- Fixed bug #6048: display footer in theme chameleon.

4.4.x
Dries Buytaert 2004-02-25 22:38:43 +00:00
parent a283a3b7b8
commit f54aab6a3e
2 changed files with 10 additions and 1 deletions

View File

@ -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";

View File

@ -70,7 +70,11 @@ br {
vertical-align: top;
width: 60%;
}
#footer {
font-size: 0.8em;
padding-top: 2em;
text-align: center;
}
/* region-specific tags */
.title {
margin: 0 0 .25em 0;