diff options
Diffstat (limited to 'themes/chameleon')
-rw-r--r-- | themes/chameleon/chameleon.theme | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme index 307407642..74a332b98 100644 --- a/themes/chameleon/chameleon.theme +++ b/themes/chameleon/chameleon.theme @@ -114,7 +114,7 @@ function chameleon_page($content, $show_blocks = TRUE, $show_messages = TRUE) { return $output; } -function chameleon_node($node, $teaser = 0, $page = 0) { +function chameleon_node($node, $teaser = 0) { $output = "<div class=\"node" . ((!$node->status) ? ' node-unpublished' : '') . (($node->sticky) ? ' sticky' : '') . "\">\n"; @@ -153,6 +153,10 @@ function chameleon_node($node, $teaser = 0, $page = 0) { } $output .= "</div>\n"; + + if ($node->content['comments']) { + $output .= drupal_render($node->content['comments']); + } return $output; } |