diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-05-14 18:45:57 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-05-14 18:45:57 +0200 |
commit | d7e6bba9c015a4922e6ef0d0d314255cc667227b (patch) | |
tree | 0da9f60c5bd3003e8d90543f9155bf02c25d48d5 | |
parent | 3185aeeb43b9b5b7e73603fbd64e5b2b9c23816c (diff) | |
download | rpg-d7e6bba9c015a4922e6ef0d0d314255cc667227b.tar.gz rpg-d7e6bba9c015a4922e6ef0d0d314255cc667227b.tar.bz2 |
disable any possibly configured global zlib compression FS#1132
darcs-hash:20070514164557-7ad00-7a40f60658af5e626698b4a262f5e70168c5c896.gz
-rw-r--r-- | inc/init.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/init.php b/inc/init.php index 4d9942ee0..8469a8230 100644 --- a/inc/init.php +++ b/inc/init.php @@ -76,6 +76,9 @@ // make session rewrites XHTML compliant @ini_set('arg_separator.output', '&'); + // make sure global zlib does not interfere FS#1132 + @ini_set('zlib.output_compression', 'off'); + // enable gzip compression if ($conf['gzip_output'] && !defined('DOKU_DISABLE_GZIP_OUTPUT') && |