diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-12-31 12:02:24 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-12-31 12:02:24 +0000 |
commit | 5ba50b3fe83b1724b6cec12ded62663167a08e14 (patch) | |
tree | 20948b0d3e841b7a41ec7d5e511d70d278e24190 /themes/pushbutton | |
parent | d813e3679c57da312cc0de61da90ff2c2eff70a6 (diff) | |
download | brdo-5ba50b3fe83b1724b6cec12ded62663167a08e14.tar.gz brdo-5ba50b3fe83b1724b6cec12ded62663167a08e14.tar.bz2 |
- Patch #350984 by Moshe: kick comment rendering out of node module.
Diffstat (limited to 'themes/pushbutton')
-rw-r--r-- | themes/pushbutton/node.tpl.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/themes/pushbutton/node.tpl.php b/themes/pushbutton/node.tpl.php index c464011ce..eac32a197 100644 --- a/themes/pushbutton/node.tpl.php +++ b/themes/pushbutton/node.tpl.php @@ -3,7 +3,7 @@ ?> <div class="node<?php if ($sticky) { print " sticky"; } ?><?php if (!$status) { print " node-unpublished"; } ?>"> <?php print $picture ?> - <?php if ($page == 0): ?> + <?php if (!$page): ?> <h1 class="title"><a href="<?php print $node_url ?>"><?php print $title ?></a></h1> <?php endif; ?> <span class="submitted"><?php print $submitted ?></span> @@ -11,5 +11,8 @@ <div class="content"><?php print $content ?></div> <?php if ($links): ?> <div class="links">» <?php print $links ?></div> + + <?php print $comments; ?> + <?php endif; ?> </div> |