diff options
-rw-r--r-- | account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/account.php b/account.php index 709ebc0af..1fd51a8d7 100644 --- a/account.php +++ b/account.php @@ -414,7 +414,7 @@ function account_track_comments() { $cresult = db_query("SELECT * FROM comments WHERE author = '$user->id' AND lid = '$node->nid'"); 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) ." - ". t("score") .": ". comment_score($comment) ."</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) .", ". t("votes") .": $comment->votes, ". t("score") .": ". comment_score($comment) .")</LI>\n"; } $output .= " </UL>\n"; } |