diff options
Diffstat (limited to 'modules/tracker.module')
-rw-r--r-- | modules/tracker.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/tracker.module b/modules/tracker.module index a8cd8e3f9..d2dd8c47a 100644 --- a/modules/tracker.module +++ b/modules/tracker.module @@ -66,7 +66,7 @@ function tracker_posts($id = 0) { $comments = array(); while ($comment = db_fetch_object($cresult)) { - $comments[] = "<li>". t("%subject by %author", array("%subject" => l($comment->subject, "node/view/$node->nid#$comment->cid"), "%author" => format_name($comment))) ." ". (node_is_new($comment->nid, $comment->timestamp) ? theme("mark") : "") ."</li>\n"; + $comments[] = "<li>". t("%subject by %author", array("%subject" => l($comment->subject, "node/view/$node->nid#comment-$comment->cid"), "%author" => format_name($comment))) ." ". (node_is_new($comment->nid, $comment->timestamp) ? theme("mark") : "") ."</li>\n"; } if ($comments) { |