diff options
Diffstat (limited to 'themes/chameleon/chameleon.theme')
-rw-r--r-- | themes/chameleon/chameleon.theme | 5 |
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"; |