summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-13 21:09:54 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-07-13 21:09:54 +0000
commitbeadf384f1cd680fa18e7a12a634a3fb7646ffe6 (patch)
treec89477a00b4f4f7a3652b681d001b53d01ef15d7 /themes
parent6682ab936c8d49a8be32b2e149b45f1eba79de0c (diff)
downloadbrdo-beadf384f1cd680fa18e7a12a634a3fb7646ffe6.tar.gz
brdo-beadf384f1cd680fa18e7a12a634a3fb7646ffe6.tar.bz2
#455844 follow-up by yched: Change render() to print render() for consistency with other template variables.
Diffstat (limited to 'themes')
-rw-r--r--themes/garland/node.tpl.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/themes/garland/node.tpl.php b/themes/garland/node.tpl.php
index 6af899bc1..d1fa348ec 100644
--- a/themes/garland/node.tpl.php
+++ b/themes/garland/node.tpl.php
@@ -13,21 +13,21 @@
<?php endif; ?>
<div class="content clearfix">
- <?php hide($content['links']); hide($content['comments']); render($content); ?>
+ <?php hide($content['links']); hide($content['comments']); print render($content); ?>
</div>
<div class="clearfix">
<div class="meta">
<?php if (!empty($content['links']['terms'])): ?>
- <div class="terms"><?php render($content['links']['terms']) ?></div>
+ <div class="terms"><?php print render($content['links']['terms']) ?></div>
<?php endif;?>
</div>
<?php if (!empty($content['links'])): ?>
- <div class="links"><?php render($content['links']) ?></div>
+ <div class="links"><?php print render($content['links']) ?></div>
<?php endif; ?>
- <?php render($content['comments']); ?>
+ <?php print render($content['comments']); ?>
</div>