diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-19 20:38:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-19 20:38:58 +0000 |
commit | 17e92817c538f74bfb49983757278fd4e42f24a5 (patch) | |
tree | a05b9405f36264d41235c82f2132a30547b57460 | |
parent | d64bc008fdff5cad8634395c375a744b8fe960d4 (diff) | |
download | brdo-17e92817c538f74bfb49983757278fd4e42f24a5.tar.gz brdo-17e92817c538f74bfb49983757278fd4e42f24a5.tar.bz2 |
- Bugfix: added missing . which stopped the Example theme's DOCTYPE from being
emitted. Reported by Robert Castelo.
-rw-r--r-- | includes/theme.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 36cfbaaaf..ac97674c0 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -22,7 +22,7 @@ class BaseTheme { global $base_url; $output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n"; - $output = "<html xmlns=\"http://www.w3.org/1999/xhtml\">"; + $output .= "<html xmlns=\"http://www.w3.org/1999/xhtml\">"; $output .= "<head><title>". $title ? $title : variable_get(site_name, "drupal") ."</title>"; $output .= theme_head($main); $output .= "</head><body style=\"background-color: $this->background; color: $this->foreground;\"". theme_onload_attribute(). "\">"; |