From 630e820ed0e735d011864c319b91f666f8c11cf5 Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Thu, 19 Jan 2006 10:29:12 +0000 Subject: [PATCH] - Patch #45446 by jakeg: don't generate empty >> --- themes/bluemarine/node.tpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/bluemarine/node.tpl.php b/themes/bluemarine/node.tpl.php index 493f324e302d..caa91e8700c7 100644 --- a/themes/bluemarine/node.tpl.php +++ b/themes/bluemarine/node.tpl.php @@ -6,5 +6,5 @@ <span class="submitted"><?php print $submitted?></span> <span class="taxonomy"><?php print $terms?></span> <div class="content"><?php print $content?></div> - <div class="links">» <?php print $links?></div> + <?php if ($links) { ?><div class="links">» <?php print $links?></div><?php }; ?> </div> -- GitLab