summaryrefslogtreecommitdiff
path: root/modules/comment.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-07-10 05:02:57 +0000
committerDries Buytaert <dries@buytaert.net>2003-07-10 05:02:57 +0000
commit1c2fc43b51455e4895455798919e4c77e2b1bf21 (patch)
tree94b23a3efda92f5776b33e9f53e76859c48a2979 /modules/comment.module
parente5b392b5d7ca27cbb9d7e88d4c9d94afeab540b3 (diff)
downloadbrdo-1c2fc43b51455e4895455798919e4c77e2b1bf21.tar.gz
brdo-1c2fc43b51455e4895455798919e4c77e2b1bf21.tar.bz2
- Bugfix: fixed HTML typo in comment module. Patch by Torgeir Berg.
Diffstat (limited to 'modules/comment.module')
-rw-r--r--modules/comment.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment.module b/modules/comment.module
index f6d65185b..593dc8189 100644
--- a/modules/comment.module
+++ b/modules/comment.module
@@ -1237,7 +1237,7 @@ function comment($comment, $links = 0) {
$output .= "<div class=\"subject\">$comment->subject". ($comment->new ? " ". theme("theme_mark") : "") ."</div>";
$output .= "<div class=\"moderation\">". $comment->moderation ."</div>";
$output .= "<div class=\"credit\">". t("by %a on %b", array("%a" => format_name($comment), "%b" => format_date($comment->timestamp))) ."</div>";
- $output .= "<div class=\"body\">". check_output($comment->comment) ."</div";
+ $output .= "<div class=\"body\">". check_output($comment->comment) ."</div>";
$output .= "<div class=\"links\">$links</div>";
$output .= "</div>";
print $output;