From 9a62873a4beae8fe620dedcf7ca40954e12cc7cb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 7 May 2003 20:39:27 +0000 Subject: - Added to default theme. Patch by Al, though I had to add a 'global $base_url;'. Fixes bug #1533. --- includes/theme.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/theme.inc b/includes/theme.inc index 58a4434d4..fc2ce1a68 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -19,8 +19,11 @@ class BaseTheme { } function header($title = "") { + global $base_url; + $output = "\n"; $output .= "". $title ? $title : variable_get(site_name, "drupal") .""; + $output .= ""; $output .= theme_head($main); $output .= "background\" text=\"$this->foreground". theme_onload_attribute(). "\">"; $output .= "
"; -- cgit v1.2.3