diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/block/block.tpl.php | 2 | ||||
-rw-r--r-- | modules/comment/comment.tpl.php | 2 | ||||
-rw-r--r-- | modules/field/theme/field.tpl.php | 2 | ||||
-rw-r--r-- | modules/node/node.tpl.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/block/block.tpl.php b/modules/block/block.tpl.php index a1af14707..c77d57e32 100644 --- a/modules/block/block.tpl.php +++ b/modules/block/block.tpl.php @@ -46,7 +46,7 @@ <h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2> <?php endif;?> - <div class="content"> + <div class="content"<?php print $content_attributes; ?>> <?php print $content ?> </div> </div> diff --git a/modules/comment/comment.tpl.php b/modules/comment/comment.tpl.php index 2777b3eda..ffc0c3c99 100644 --- a/modules/comment/comment.tpl.php +++ b/modules/comment/comment.tpl.php @@ -66,7 +66,7 @@ ?> </div> - <div class="content"> + <div class="content"<?php print $content_attributes; ?>> <?php // We hide the comments and links now so that we can render them later. hide($content['links']); diff --git a/modules/field/theme/field.tpl.php b/modules/field/theme/field.tpl.php index 312c4b844..a35fd7615 100644 --- a/modules/field/theme/field.tpl.php +++ b/modules/field/theme/field.tpl.php @@ -43,7 +43,7 @@ <?php if (!$label_hidden) : ?> <div class="field-label"<?php print $title_attributes; ?>><?php print $label ?>: </div> <?php endif; ?> - <div class="field-items"> + <div class="field-items"<?php print $content_attributes; ?>> <?php foreach ($items as $delta => $item) : ?> <div class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>><?php print render($item); ?></div> <?php endforeach; ?> diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php index c05d7e8bf..ae03d400d 100644 --- a/modules/node/node.tpl.php +++ b/modules/node/node.tpl.php @@ -100,7 +100,7 @@ </div> <?php endif; ?> - <div class="content"> + <div class="content"<?php print $content_attributes; ?>> <?php // We hide the comments and links now so that we can render them later. hide($content['comments']); |