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_header_admin.php | 89 --------------------------------------- 1 file changed, 89 deletions(-) delete mode 100644 phpBB/admin/page_header_admin.php (limited to 'phpBB/admin/page_header_admin.php') diff --git a/phpBB/admin/page_header_admin.php b/phpBB/admin/page_header_admin.php deleted file mode 100644 index a7e8abd282..0000000000 --- a/phpBB/admin/page_header_admin.php +++ /dev/null @@ -1,89 +0,0 @@ -= '4.0.4pl1' && strstr($HTTP_USER_AGENT,'compatible') ) - { - if ( extension_loaded('zlib') ) - { - ob_start('ob_gzhandler'); - } - } - else if ( $phpver > '4.0' ) - { - if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') ) - { - if ( extension_loaded('zlib') ) - { - $do_gzip_compress = TRUE; - ob_start(); - ob_implicit_flush(0); - - header("Content-Encoding: gzip"); - } - } - } -} - -header("Content-type: text/html; charset=" . $lang['ENCODING']); - -?> - - - - - - - - -<?php echo $board_config['sitename'] . ' - ' . $page_title; ?> - - - - - - \ No newline at end of file -- cgit v1.2.1