comment_update_7000

Versions
mediamosa-21
comment_update_7000()

Remove comment settings for page ordering.

Related topics

Code

modules/comment/comment.install, line 108

<?php
function comment_update_7000() {
  $types = node_type_get_types();
  foreach ($types as $type => $object) {
    variable_del('comment_default_order' . $type);
  }
  return t('Comment order settings removed.');
}
?>