From 09b7d6b2b988ef399daadd4f76ffef07cfe6a665 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 4 Aug 2002 13:58:52 +0000 Subject: Updates, removed included header/footer (merged into functions within pagestart) git-svn-id: file:///svn/phpbb/trunk@2817 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/admin/page_footer_admin.php | 73 --------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 phpBB/admin/page_footer_admin.php (limited to 'phpBB/admin/page_footer_admin.php') diff --git a/phpBB/admin/page_footer_admin.php b/phpBB/admin/page_footer_admin.php deleted file mode 100644 index 96ba8a40e6..0000000000 --- a/phpBB/admin/page_footer_admin.php +++ /dev/null @@ -1,73 +0,0 @@ - - -
Powered by phpBB © 2002 phpBB Group
- -
- - - -sql_close(); - -// -// Compress buffered output if required -// and send to browser -// -if ( $do_gzip_compress ) -{ - // - // Borrowed from php.net! - // - $gzip_contents = ob_get_contents(); - ob_end_clean(); - - $gzip_size = strlen($gzip_contents); - $gzip_crc = crc32($gzip_contents); - - $gzip_contents = gzcompress($gzip_contents, 9); - $gzip_contents = substr($gzip_contents, 0, strlen($gzip_contents) - 4); - - echo "\x1f\x8b\x08\x00\x00\x00\x00\x00"; - echo $gzip_contents; - echo pack("V", $gzip_crc); - echo pack("V", $gzip_size); -} - -exit; - -?> \ No newline at end of file -- cgit v1.2.1