diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-09 17:11:26 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-09 17:11:26 +0000 |
commit | c79eb8c9901b6b1439822d13da073eb84b07a7c0 (patch) | |
tree | 113a5a7f71310ee7ee643e79a213f9205e92d0ba /includes/theme.inc | |
parent | f50a92b6fd22fb140cd6b0f69134bf6cfcd5700b (diff) | |
download | brdo-c79eb8c9901b6b1439822d13da073eb84b07a7c0.tar.gz brdo-c79eb8c9901b6b1439822d13da073eb84b07a7c0.tar.bz2 |
- Bugfix: made theme_footer() call theme_closure() instead of itself. Patch by Bart.
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 2 |
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; } |