From 6a79e8afeb2038fa20796846fd1e2b64113112c3 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 20 Mar 2012 14:45:43 +0400 Subject: only enable ob_gzhandler if it exists --- api/index.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'api') diff --git a/api/index.php b/api/index.php index b8a6d4c4a..fd59f4bee 100644 --- a/api/index.php +++ b/api/index.php @@ -21,7 +21,9 @@ chdir(".."); - if (defined('ENABLE_GZIP_OUTPUT') && ENABLE_GZIP_OUTPUT) { + if (defined('ENABLE_GZIP_OUTPUT') && ENABLE_GZIP_OUTPUT && + function_exists("ob_gzhandler")) { + ob_start("ob_gzhandler"); } -- cgit v1.2.3