diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-13 06:34:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-13 06:34:44 +0000 |
commit | 9c5cd7e2ab5986514502dc90d21141ad0330c755 (patch) | |
tree | ef98d35faea5a0edb629434a8aa9062e08338adb /includes | |
parent | 9e5878ae45f2f846756f5e8a69371d5507ac57c1 (diff) | |
download | brdo-9c5cd7e2ab5986514502dc90d21141ad0330c755.tar.gz brdo-9c5cd7e2ab5986514502dc90d21141ad0330c755.tar.bz2 |
- Added missing </TD>.
(Patched by Remco.)
Diffstat (limited to 'includes')
-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 0a8ea9e12..838814d8a 100644 --- a/includes/comment.inc +++ b/includes/comment.inc @@ -172,7 +172,7 @@ function comment_moderation($comment) { } else { // comment has already been moderated: - $output .= "<TABLE BORDER=\"0\" CELLSPACING=\"1\" CELLPADDING=\"1\"><TR><TD ALIGN=\"right\">". t("score") .":</TD><TD>". check_output($comment->score) ."</TD></TR><TR><TD ALIGN=\"right\">". t("votes") .":</TD><TD>". check_output($comment->votes) ."</TR></TABLE>\n"; + $output .= "<TABLE BORDER=\"0\" CELLSPACING=\"1\" CELLPADDING=\"1\"><TR><TD ALIGN=\"right\">". t("score") .":</TD><TD>". check_output($comment->score) ."</TD></TR><TR><TD ALIGN=\"right\">". t("votes") .":</TD><TD>". check_output($comment->votes) ."</TD></TR></TABLE>\n"; } return $output; |