1 comment.module comment_increment_alphadecimal($c = '00')

Increments a sorting code to the next value.

See also

comment_int_to_alphadecimal()

File

core/modules/comment/comment.module, line 2287
Enables users to comment on published content.

Code

function comment_increment_alphadecimal($c = '00') {
  return comment_int_to_alphadecimal(comment_alphadecimal_to_int($c) + 1);
}