diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-04-15 13:59:49 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-04-15 13:59:49 +0000 |
commit | bd93e7279d50ca5a1afbf6d776d68e21aec9d7ab (patch) | |
tree | 2bde070fc9dbaf5f2ac583a3211afde6e9806eab | |
parent | 7174f684769b42c97b9f4f937caab4676657d3a8 (diff) | |
download | brdo-bd93e7279d50ca5a1afbf6d776d68e21aec9d7ab.tar.gz brdo-bd93e7279d50ca5a1afbf6d776d68e21aec9d7ab.tar.bz2 |
- Patch #285116 by JeremyFrench: removed redundant argument.
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 7ef2b4c7a..018afc494 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -1475,12 +1475,10 @@ function theme_tablesort_indicator($style) { * The subject of the box. * @param $content * The content of the box. - * @param $region - * The region in which the box is displayed. * @return * A string containing the box output. */ -function theme_box($title, $content, $region = 'main') { +function theme_box($title, $content) { $output = '<h2 class="title">' . $title . '</h2><div>' . $content . '</div>'; return $output; } |