summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
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) {