diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-09 14:16:33 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-09 14:16:33 +0000 |
commit | 9a5b82e16e1226e77fefb9bddeefed3217b27065 (patch) | |
tree | e65e234f538a81d747ecb5941d6d9fc8398cf308 | |
parent | 0d14ee0b0ca4837decfdda7cc019b66afb4567fd (diff) | |
download | brdo-9a5b82e16e1226e77fefb9bddeefed3217b27065.tar.gz brdo-9a5b82e16e1226e77fefb9bddeefed3217b27065.tar.bz2 |
- fixed bug in comment code
-rw-r--r-- | includes/comment.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/comment.inc b/includes/comment.inc index 23c79717a..152389414 100644 --- a/includes/comment.inc +++ b/includes/comment.inc @@ -308,7 +308,7 @@ function comment_render($lid, $cid) { print " <TR><TH>Subject</TH><TH>Author</TH><TH>Date</TH><TH>Score</TH></TR>\n"; while ($comment = db_fetch_object($result)) { if (comment_visible($comment, $threshold)) { - print " <TR><TD><A HREF=\"". comment_uri("id=$comment->lid;cid=$comment->cid#$comment->cid") ."\">". check_output($comment->subject) ."</A></TD><TD>". format_username($comment->userid) ."</TD><TD>". format_date($comment->timestamp, "small") ."</TD><TD>". comment_score($comment) ."</TD></TR>\n"; + print " <TR><TD><A HREF=\"". comment_uri("id=$comment->lid&cid=$comment->cid#$comment->cid") ."\">". check_output($comment->subject) ."</A></TD><TD>". format_username($comment->userid) ."</TD><TD>". format_date($comment->timestamp, "small") ."</TD><TD>". comment_score($comment) ."</TD></TR>\n"; } } print "</TABLE>\n"; |