From a6f0fd4daee001cf0384ad40da55083f79584f35 Mon Sep 17 00:00:00 2001 From: Kjartan Mannes Date: Tue, 19 Feb 2002 22:58:33 +0000 Subject: - removed some warnings caused by implode. --- includes/theme.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes') diff --git a/includes/theme.inc b/includes/theme.inc index 48b61589d..fa13e2236 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -8,13 +8,13 @@ class BaseTheme { $output .= "
"; print $output; - $this->box(t("Navigation"), implode("
", link_page())); theme_blocks("all", $this); + $this->box(t("Navigation"), @implode("
", link_page())); theme_blocks("all", $this); print "
"; } function links($links, $delimiter = " | ") { - return implode($delimiter, $links); + return @implode($delimiter, $links); } function image($name) { -- cgit v1.2.3