From 4d54978a4b49345330a943e8c4f6a74e2b432fe4 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 13 Dec 2003 17:46:44 +0000 Subject: - Small change to the default theme. --- includes/theme.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'includes') diff --git a/includes/theme.inc b/includes/theme.inc index fd2f6f51c..f8f37e7ad 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -347,8 +347,8 @@ function theme_table($header, $rows) { * * @return a string containing the @a box output. */ -function theme_box($subject, $content, $region = "main") { - $output = "

$subject

$content

"; +function theme_box($title, $content, $region = "main") { + $output = "

$title

$content

"; return $output; } @@ -368,7 +368,7 @@ function theme_box($subject, $content, $region = "main") { */ function theme_block($block) { $output = "
module\" id=\"block-$block->module-$block->delta\">"; - $output .= "

$block->subject

"; + $output .= "

$block->subject

"; $output .= "
$block->content
"; $output .= "
"; return $output; -- cgit v1.2.3