summaryrefslogtreecommitdiff
path: root/includes/theme.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-16 17:09:23 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-16 17:09:23 +0000
commitef8735614fdc50ad1512027dcb1ea84f67becb3a (patch)
treeb7878147b6973cc71bc348e7b4565da6b4ad661c /includes/theme.inc
parente5f2c1ef0e6745017acf5e57c9e2913b21d6f2e4 (diff)
downloadbrdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.gz
brdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.bz2
- Improvements: XHTML-ifications. Patch by GmbH. See feature #1813.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 8c4148a48..6566ed81f 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -24,7 +24,7 @@ class BaseTheme {
$output = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"DTD/xhtml1-transitional.dtd\">\n";
$output .= "<html><head><title>". $title ? $title : variable_get(site_name, "drupal") ."</title>";
$output .= theme_head($main);
- $output .= "</head><body bgcolor=\"$this->background\" text=\"$this->foreground". theme_onload_attribute(). "\">";
+ $output .= "</head><body style=\"background-color: $this->background; color: $this->foreground;\"". theme_onload_attribute(). "\">";
$output .= "<table border=\"0\" cellspacing=\"4\" cellpadding=\"4\"><tr><td style=\"vertical-align: top; width: 170px;\">";
print $output;