summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-02-19 22:58:33 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-02-19 22:58:33 +0000
commita6f0fd4daee001cf0384ad40da55083f79584f35 (patch)
tree9191e5ff184cf8b2721360fa3a5c2032794c1e46 /includes
parentc9fc36fcdc584199f800195a5ad9e6c6f9612c7b (diff)
downloadbrdo-a6f0fd4daee001cf0384ad40da55083f79584f35.tar.gz
brdo-a6f0fd4daee001cf0384ad40da55083f79584f35.tar.bz2
- removed some warnings caused by implode.
Diffstat (limited to 'includes')
-rw-r--r--includes/theme.inc4
1 files changed, 2 insertions, 2 deletions
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 .= "<table border=\"0\" cellspacing=\"4\" cellpadding=\"4\"><tr><td valign=\"top\" width=\"170\">";
print $output;
- $this->box(t("Navigation"), implode("<br />", link_page())); theme_blocks("all", $this);
+ $this->box(t("Navigation"), @implode("<br />", link_page())); theme_blocks("all", $this);
print "</td><td valign=\"top\">";
}
function links($links, $delimiter = " | ") {
- return implode($delimiter, $links);
+ return @implode($delimiter, $links);
}
function image($name) {