From c79eb8c9901b6b1439822d13da073eb84b07a7c0 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 9 Nov 2003 17:11:26 +0000 Subject: - Bugfix: made theme_footer() call theme_closure() instead of itself. Patch by Bart. --- includes/theme.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/theme.inc') 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 = ""; - $output .= theme_footer(); + $output .= theme_closure(); $output .= ""; print $output; } -- cgit v1.2.3