summaryrefslogtreecommitdiff
path: root/themes/chameleon/chameleon.theme
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-02-25 22:38:43 +0000
committerDries Buytaert <dries@buytaert.net>2004-02-25 22:38:43 +0000
commitf54aab6a3eff4d917e1768f340b4774aec5bef61 (patch)
treeb0b627402f3eddfa0a257ec2fbb829bac9f3c16d /themes/chameleon/chameleon.theme
parenta283a3b7b88cc8b5ebcb148612fc358bcc098874 (diff)
downloadbrdo-f54aab6a3eff4d917e1768f340b4774aec5bef61.tar.gz
brdo-f54aab6a3eff4d917e1768f340b4774aec5bef61.tar.bz2
- Fixed bug #6048: display footer in theme chameleon.
Diffstat (limited to 'themes/chameleon/chameleon.theme')
-rw-r--r--themes/chameleon/chameleon.theme5
1 files changed, 5 insertions, 0 deletions
diff --git a/themes/chameleon/chameleon.theme b/themes/chameleon/chameleon.theme
index b5326e426..9a35e51d6 100644
--- a/themes/chameleon/chameleon.theme
+++ b/themes/chameleon/chameleon.theme
@@ -81,6 +81,10 @@ function chameleon_page($content, $title = NULL, $breadcrumb = NULL) {
$output .= $content;
$output .= "\n<!-- end content -->\n";
+ if ($footer = variable_get('site_footer', '')) {
+ $output .= " <div id=\"footer\">$footer</div>\n";
+ }
+
$output .= " </td>\n";
if ($blocks = theme_blocks("right")) {
@@ -89,6 +93,7 @@ function chameleon_page($content, $title = NULL, $breadcrumb = NULL) {
$output .= " </tr>\n";
$output .= " </table>\n";
+
$output .= theme_closure();
$output .= " </body>\n";
$output .= "</html>\n";