1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 03:15:56 +00:00

only enable ob_gzhandler if it exists

This commit is contained in:
Andrew Dolgov
2012-03-20 14:45:43 +04:00
parent 787e5ebc21
commit 6a79e8afeb
3 changed files with 6 additions and 4 deletions

View File

@@ -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");
}