summaryrefslogtreecommitdiff
path: root/account.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-03-28 21:29:12 +0000
committerDries Buytaert <dries@buytaert.net>2001-03-28 21:29:12 +0000
commita53d198cac4e902436fdc6555f66b006a6630776 (patch)
tree88e63ce5c8175fbca352fe9883932a1ed9062f20 /account.php
parent3f2b0e0b3f0322dac929bb997a331cb7c021f295 (diff)
downloadbrdo-a53d198cac4e902436fdc6555f66b006a6630776.tar.gz
brdo-a53d198cac4e902436fdc6555f66b006a6630776.tar.bz2
- on popular demand:
added the # votes to the "track your comments" page
Diffstat (limited to 'account.php')
-rw-r--r--account.php2
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";
}