diff options
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; |