From 67fe17164a3e68d6763d613bd758a5e77b0b9419 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 13 Dec 2003 17:52:50 +0000 Subject: - Bugfix: removed incorrect print statements from theme.inc. --- includes/theme.inc | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'includes/theme.inc') diff --git a/includes/theme.inc b/includes/theme.inc index f8f37e7ad..0df0e2fba 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -246,14 +246,14 @@ function theme_node($node, $main = 0, $page = 0) { } if ($page == 0) { - $output = "

$node->title

by ". format_name($node); + $output = "

$node->title

by ". format_name($node); } else { $output = "by ". format_name($node); } if (count($terms)) { - $output .= " (". print theme("links", $terms) .")
"; + $output .= " (". theme("links", $terms) .")
"; } if ($main && $node->teaser) { @@ -264,9 +264,8 @@ function theme_node($node, $main = 0, $page = 0) { } if ($links = link_node($node, $main)) { - $output .= "
[ ". print theme("links", $links) ." ]"; + $output .= "
". theme("links", $links) ."
"; } - $output .= "
"; return $output; } -- cgit v1.2.3