diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-02-19 22:58:33 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-02-19 22:58:33 +0000 |
commit | a6f0fd4daee001cf0384ad40da55083f79584f35 (patch) | |
tree | 9191e5ff184cf8b2721360fa3a5c2032794c1e46 /includes | |
parent | c9fc36fcdc584199f800195a5ad9e6c6f9612c7b (diff) | |
download | brdo-a6f0fd4daee001cf0384ad40da55083f79584f35.tar.gz brdo-a6f0fd4daee001cf0384ad40da55083f79584f35.tar.bz2 |
- removed some warnings caused by implode.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/theme.inc | 4 |
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) { |