aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/admin/page_footer_admin.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/admin/page_footer_admin.php')
-rw-r--r--phpBB/admin/page_footer_admin.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/phpBB/admin/page_footer_admin.php b/phpBB/admin/page_footer_admin.php
index abfc0f989b..3bca8b0abe 100644
--- a/phpBB/admin/page_footer_admin.php
+++ b/phpBB/admin/page_footer_admin.php
@@ -44,11 +44,6 @@ $mtime = $mtime[1] + $mtime[0];
$endtime = $mtime;
$totaltime = ($endtime - $starttime);
-$gzip_text = ($board_config['gzip_compress']) ? "GZIP compression enabled" : "GZIP compression disabled";
-$debug_mode = (DEBUG) ? " : Debug Mode" : "";
-
-printf("<center><font size=-2>phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed : $gzip_text".$debug_mode."</font></center>", $totaltime);
-
//
// Close our DB connection.
//
@@ -58,7 +53,7 @@ $db->sql_close();
// Compress buffered output if required
// and send to browser
//
-if($do_gzip_compress)
+if( $do_gzip_compress )
{
//
// Borrowed from php.net!