diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-02-12 20:40:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-02-12 20:40:43 +0000 |
commit | db554e857dc90b4c4f26ad49454c5d92c17e1024 (patch) | |
tree | 430cdb71c2ef19e808bd74332a92afe443bc21bf /includes/comment.inc | |
parent | 3ba9cb5d72c0be6941c56bd113850aac3587b981 (diff) | |
download | brdo-db554e857dc90b4c4f26ad49454c5d92c17e1024.tar.gz brdo-db554e857dc90b4c4f26ad49454c5d92c17e1024.tar.bz2 |
- initial import of the preliminary translation code.
- added timer.inc for benchmarking purpose
- bugfix for php-clean
- bugfix for account.php
- removed redundant format_data
- ...
Diffstat (limited to 'includes/comment.inc')
-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 4f9ee3ac5..dcd4557eb 100644 --- a/includes/comment.inc +++ b/includes/comment.inc @@ -205,7 +205,7 @@ function comment_moderation($comment) { $output .= "</SELECT>\n"; } else { - $output .= "<TABLE BORDER=\"0\" CELLSPACING=\"1\" CELLPADDING=\"1\"><TR><TD>score:</TD><TD>". format_data($comment->score) ."</TD></TR><TR><TD>votes:</TD><TD>". format_data($comment->votes) ."</TR></TABLE>\n"; + $output .= "<TABLE BORDER=\"0\" CELLSPACING=\"1\" CELLPADDING=\"1\"><TR><TD>score:</TD><TD>". check_output($comment->score) ."</TD></TR><TR><TD>votes:</TD><TD>". check_output($comment->votes) ."</TR></TABLE>\n"; } return $output; |