summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-09 17:11:26 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-09 17:11:26 +0000
commitc79eb8c9901b6b1439822d13da073eb84b07a7c0 (patch)
tree113a5a7f71310ee7ee643e79a213f9205e92d0ba
parentf50a92b6fd22fb140cd6b0f69134bf6cfcd5700b (diff)
downloadbrdo-c79eb8c9901b6b1439822d13da073eb84b07a7c0.tar.gz
brdo-c79eb8c9901b6b1439822d13da073eb84b07a7c0.tar.bz2
- Bugfix: made theme_footer() call theme_closure() instead of itself. Patch by Bart.
-rw-r--r--includes/theme.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/theme.inc b/includes/theme.inc
index 97ab463f4..7df69fa2d 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -107,7 +107,7 @@ function theme_block($block) {
function theme_footer() {
$output = "</td></tr></table>";
- $output .= theme_footer();
+ $output .= theme_closure();
$output .= "</body></html>";
print $output;
}