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("
phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed", $totaltime);
+$gzip_text = ($board_config['gzip_compress']) ? "GZIP compression enabled" : "GZIP compression disabled";
+
+printf("phpBB Created this page in %f seconds : " . $db->num_queries . " queries executed : $gzip_text", $totaltime);
//
// Close our DB connection.