summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--themes/bartik/templates/comment-wrapper.tpl.php24
1 files changed, 11 insertions, 13 deletions
diff --git a/themes/bartik/templates/comment-wrapper.tpl.php b/themes/bartik/templates/comment-wrapper.tpl.php
index 66e9e798e..0608af6a0 100644
--- a/themes/bartik/templates/comment-wrapper.tpl.php
+++ b/themes/bartik/templates/comment-wrapper.tpl.php
@@ -36,19 +36,17 @@
* @see theme_comment_wrapper()
*/
?>
-<div id="comments-wrapper">
- <div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
- <?php if ($content['comments'] && $node->type != 'forum'): ?>
- <?php print render($title_prefix); ?>
- <h2 class="title"><?php print t('Comments'); ?></h2>
- <?php print render($title_suffix); ?>
- <?php endif; ?>
+<div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>>
+ <?php if ($content['comments'] && $node->type != 'forum'): ?>
+ <?php print render($title_prefix); ?>
+ <h2 class="title"><?php print t('Comments'); ?></h2>
+ <?php print render($title_suffix); ?>
+ <?php endif; ?>
- <?php print render($content['comments']); ?>
+ <?php print render($content['comments']); ?>
- <?php if ($content['comment_form']): ?>
- <h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
- <?php print render($content['comment_form']); ?>
- <?php endif; ?>
- </div>
+ <?php if ($content['comment_form']): ?>
+ <h2 class="title comment-form"><?php print t('Add new comment'); ?></h2>
+ <?php print render($content['comment_form']); ?>
+ <?php endif; ?>
</div>