summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-10-19 20:38:58 +0000
committerDries Buytaert <dries@buytaert.net>2003-10-19 20:38:58 +0000
commit17e92817c538f74bfb49983757278fd4e42f24a5 (patch)
treea05b9405f36264d41235c82f2132a30547b57460
parentd64bc008fdff5cad8634395c375a744b8fe960d4 (diff)
downloadbrdo-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.inc2
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(). "\">";