summaryrefslogtreecommitdiff
path: root/modules/node
diff options
context:
space:
mode:
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>