aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 0ba6315b5b..7b36c36548 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2357,7 +2357,7 @@ function page_header($page_title = '', $display_online_list = true)
// gzip_compression
if ($config['gzip_compress'])
{
- if (extension_loaded('zlib') && !headers_sent())
+ if (@extension_loaded('zlib') && !headers_sent())
{
ob_start('ob_gzhandler');
}