function vancode2int

Decode vancode back to an integer.

1 call to vancode2int()
comment_save in drupal/modules/comment/comment.module
Accepts a submission of new or changed comment content.

File

drupal/modules/comment/comment.module, line 2514
Enables users to comment on published content.

Code

function vancode2int($c = '00') {
  return base_convert(substr($c, 1), 36, 10);
}