1 comment.module | comment_alphadecimal_to_int($c = '00') |
Decodes a sorting code back to an integer.
See also
File
- core/
modules/ comment/ comment.module, line 2278 - Enables users to comment on published content.
Code
function comment_alphadecimal_to_int($c = '00') {
return base_convert(substr($c, 1), 36, 10);
}