diff options
Diffstat (limited to 'phpBB/includes/page_tail.php')
-rw-r--r-- | phpBB/includes/page_tail.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php index 0d154a1df5..7913a1c697 100644 --- a/phpBB/includes/page_tail.php +++ b/phpBB/includes/page_tail.php @@ -30,6 +30,11 @@ if($userdata['user_level'] == ADMIN) $admin_link = "<a href=\"admin/index.$phpEx\">Administration Panel</a>"; } $current_time = time(); + +$template->set_filenames(array( + "overall_footer" => "overall_footer.tpl") +); + $template->assign_vars(array( "PHPBB_VERSION" => "2.0-alpha", "ADMIN_LINK" => $admin_link)); @@ -59,6 +64,9 @@ printf("<center><font size=-2>phpBB Created this page in %f seconds.</font></cen // if($do_gzip_compress) { + // + // Borrowed from php.net! + // $gzip_contents = ob_get_contents(); ob_end_clean(); |