Index: forumthread.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/forumthread/forumthread.module,v retrieving revision 1.5.2.6 diff -u -p -r1.5.2.6 forumthread.module --- forumthread.module 5 Aug 2008 17:36:08 -0000 1.5.2.6 +++ forumthread.module 6 Dec 2008 01:57:57 -0000 @@ -119,10 +119,7 @@ function get_node_comments($nid, $cid = if ($comment = db_fetch_object($result)) { $comment->name = $comment->uid ? $comment->registered_name : $comment->name; $links = module_invoke_all('link', 'comment', $comment, 1); - foreach (module_implements('link_alter') as $module) { - $function = $module .'_link_alter'; - $function($node, $links); - } + drupal_alter('link', $links, $node); $output .= theme('comment_view', $comment, $links); } }