| 5 comment.module | vancode2int($c = '00') |
| 6 comment.module | vancode2int($c = '00') |
| 7 comment.module | vancode2int($c = '00') |
Decode vancode back to an integer.
1 call to vancode2int()
File
- modules/
comment/ comment.module, line 2486 - Enables users to comment on published content.
Code
function vancode2int($c = '00') {
return base_convert(substr($c, 1), 36, 10);
}
Login or register to post comments