summaryrefslogtreecommitdiff
path: root/modules/node
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 /modules/node
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 'modules/node')
-rw-r--r--modules/node/node.tpl.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.tpl.php b/modules/node/node.tpl.php
index 77c1f9642..362907f38 100644
--- a/modules/node/node.tpl.php
+++ b/modules/node/node.tpl.php
@@ -91,12 +91,12 @@
// We hide the comments and links now so that we can render them later.
hide($content['comments']);
hide($content['links']);
- render($content);
+ print render($content);
?>
</div>
- <?php render($content['links']); ?>
+ <?php print render($content['links']); ?>
- <?php render($content['comments']); ?>
+ <?php print render($content['comments']); ?>
</div>