diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-07-10 05:02:57 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-07-10 05:02:57 +0000 |
commit | 1c2fc43b51455e4895455798919e4c77e2b1bf21 (patch) | |
tree | 94b23a3efda92f5776b33e9f53e76859c48a2979 /modules/comment/comment.module | |
parent | e5b392b5d7ca27cbb9d7e88d4c9d94afeab540b3 (diff) | |
download | brdo-1c2fc43b51455e4895455798919e4c77e2b1bf21.tar.gz brdo-1c2fc43b51455e4895455798919e4c77e2b1bf21.tar.bz2 |
- Bugfix: fixed HTML typo in comment module. Patch by Torgeir Berg.
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index f6d65185b..593dc8189 100644 --- a/modules/comment/comment.module +++ b/modules/comment/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; |