diff options
Diffstat (limited to 'includes')
-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; |