diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-24 22:39:48 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-24 22:39:48 +0000 |
commit | af5bc7cdefa0b6c491feece42d1e0b67a4de19c9 (patch) | |
tree | 5589e37fa962679f7eeaedd0758ceee43f938964 /includes/theme.inc | |
parent | c2a4a5ec154a85327d2093769f700718f118424d (diff) | |
download | brdo-af5bc7cdefa0b6c491feece42d1e0b67a4de19c9.tar.gz brdo-af5bc7cdefa0b6c491feece42d1e0b67a4de19c9.tar.bz2 |
- Made the Xtemplate theme degrade gracefully when CSS is disabled.
Diffstat (limited to 'includes/theme.inc')
-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 3e8af9546..2c2c8dba3 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -247,7 +247,7 @@ function theme_box($subject, $content, $region = "main") { **/ function theme_block($block) { $output = "<div class=\"block block-$block->module\" id=\"block-$block->module-$block->delta\">"; - $output .= " <h3>$block->subject</h3>"; + $output .= " <h2>$block->subject</h2>"; $output .= " <div class=\"content\">$block->content</div>"; $output .= "</div>"; return $output; |