diff --git a/includes/theme.inc b/includes/theme.inc
index 48b61589d14f938e42f6079365acc8a83b595be6..fa13e2236f5b2c36e02fa6541d08e22df9b41e37 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -8,13 +8,13 @@ function header($title = "") {
     $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) {