diff options
Diffstat (limited to 'modules/comment/comment.module')
-rw-r--r-- | modules/comment/comment.module | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 119b494ea..762c71749 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -839,9 +839,8 @@ function comment_build($comment, stdClass $node, $build_mode = 'full') { * Build mode, e.g. 'full', 'teaser'... */ function comment_build_content($comment, stdClass $node, $build_mode = 'full') { - if (empty($comment->content)) { - $comment->content = array(); - } + // Remove previously built content, if exists. + $comment->content = array(); // Build comment body. $comment->content['comment_body'] = array( |