diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-01-27 14:58:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-01-27 14:58:45 +0000 |
commit | f9a508d5dd70e85c674d326efdd60ba46672b526 (patch) | |
tree | 43450bfb1f902619aea41c8de1c8623c194882df /modules/tracker.module | |
parent | 362cccab7b5bee2b3e0971c79c11b211f84c0e8c (diff) | |
download | brdo-f9a508d5dd70e85c674d326efdd60ba46672b526.tar.gz brdo-f9a508d5dd70e85c674d326efdd60ba46672b526.tar.bz2 |
- Fixed more than 30 HTML and XML well-formedness errors.
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 0735f107a..1daf00944 100644 --- a/modules/tracker.module +++ b/modules/tracker.module @@ -34,7 +34,7 @@ function tracker_comments($id = 0) { $output .= "<ul>"; while ($comment = db_fetch_object($cresult)) { - $output .= " <li><a href=\"node.php?id=$node->nid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">". check_output($comment->subject) ."</a> (". t("replies") .": ". comment_num_replies($comment->cid) .")</li>\n"; + $output .= " <li><a href=\"node.php?id=$node->nid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">". check_output($comment->subject) ."</a> (". t("replies") .": ". comment_num_replies($comment->cid) .") ". (comment_is_new($comment) ? "<span style=\"color: red;\">*</span>" : "") ."</li>\n"; } $output .= " </ul>\n"; } |