Index: usercomment.module =================================================================== --- usercomment.module (revision 1278) +++ usercomment.module (revision 1286) @@ -409,10 +409,7 @@ else { $links = module_invoke_all('link', 'comment', $comment, 0); } - foreach (module_implements('link_alter') as $module) { - $function = $module .'_link_alter'; - $function($node, $links); - } + drupal_alter('link', $links, $node); $content .= theme('comment_view', $comment, $node, $links); } return $content;