summaryrefslogtreecommitdiff
path: root/themes/garland
diff options
context:
space:
mode:
Diffstat (limited to 'themes/garland')
-rw-r--r--themes/garland/block.tpl.php2
-rw-r--r--themes/garland/comment.tpl.php2
-rw-r--r--themes/garland/node.tpl.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/themes/garland/block.tpl.php b/themes/garland/block.tpl.php
index f9879ebbe..9474ba72a 100644
--- a/themes/garland/block.tpl.php
+++ b/themes/garland/block.tpl.php
@@ -11,5 +11,5 @@
<h2 class="title"<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>
- <div class="content"><?php print $content ?></div>
+ <div class="content"<?php print $content_attributes; ?>><?php print $content ?></div>
</div>
diff --git a/themes/garland/comment.tpl.php b/themes/garland/comment.tpl.php
index f973e5baa..2c3e1ca28 100644
--- a/themes/garland/comment.tpl.php
+++ b/themes/garland/comment.tpl.php
@@ -19,7 +19,7 @@
<h3<?php print $title_attributes; ?>><?php print $title ?></h3>
- <div class="content">
+ <div class="content"<?php print $content_attributes; ?>>
<?php hide($content['links']); print render($content); ?>
<?php if ($signature): ?>
<div class="clearfix">
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
index 5c02dfb9b..47f9cc974 100644
--- a/themes/garland/node.tpl.php
+++ b/themes/garland/node.tpl.php
@@ -17,7 +17,7 @@
<span class="submitted"><?php print $date; ?> — <?php print $name; ?></span>
<?php endif; ?>
- <div class="content clearfix">
+ <div class="content clearfix"<?php print $content_attributes; ?>>
<?php
// We hide the comments and links now so that we can render them later.
hide($content['comments']);