diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment-wrapper.tpl.php | 2 | ||||
-rw-r--r-- | modules/comment/comment.tpl.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/comment-wrapper.tpl.php b/modules/comment/comment-wrapper.tpl.php index aabf3850f..1d1e1fe9b 100644 --- a/modules/comment/comment-wrapper.tpl.php +++ b/modules/comment/comment-wrapper.tpl.php @@ -30,7 +30,7 @@ * @see theme_comment_wrapper() */ ?> -<div id="comments" class="<?php print $classes; ?>"> +<div id="comments" class="<?php print $classes; ?>"<?php print $attributes; ?>> <?php if ($node->type != 'forum'): ?> <h2 class="comments"><?php print t('Comments'); ?></h2> <?php endif; ?> diff --git a/modules/comment/comment.tpl.php b/modules/comment/comment.tpl.php index cae102f85..e77785590 100644 --- a/modules/comment/comment.tpl.php +++ b/modules/comment/comment.tpl.php @@ -44,14 +44,14 @@ * @see theme_comment() */ ?> -<div class="<?php print $classes; ?> clearfix"> +<div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>> <?php print $picture ?> <?php if ($new): ?> <span class="new"><?php print $new ?></span> <?php endif; ?> - <h3><?php print $title ?></h3> + <h3<?php print $title_attributes; ?>><?php print $title ?></h3> <div class="submitted"> <?php |