You are here

function comment_goodness_menu_alter in Comment goodness 7

Implements hook_menu_alter().

Override the comment_permalink function. The comment module assumes ASC order and because of this, permalinks do not work with DESC sorted comments.

File

./comment_goodness.module, line 197
Comment goodness provides newest to oldest comment sorting

Code

function comment_goodness_menu_alter(&$items) {
  if (isset($items['comment/%'])) {
    $items['comment/%']['page callback'] = 'comment_goodness_permalink';
  }
}