diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/page_tail.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php index adf403bd6b..f5a22e4203 100644 --- a/phpBB/includes/page_tail.php +++ b/phpBB/includes/page_tail.php @@ -50,7 +50,9 @@ $mtime = $mtime[1] + $mtime[0]; $endtime = $mtime; $totaltime = ($endtime - $starttime); -printf("<center><font size=-2>phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed</font></center>", $totaltime); +$gzip_text = ($board_config['gzip_compress']) ? "GZIP compression enabled" : "GZIP compression disabled"; + +printf("<center><font size=-2>phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed : $gzip_text</font></center>", $totaltime); // // Close our DB connection. |