diff options
author | Andreas Gohr <andi@splitbrain.org> | 2007-05-14 18:55:29 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2007-05-14 18:55:29 +0200 |
commit | 8a447e5c940231e5547004c8343801b7f59f1df9 (patch) | |
tree | 3b062a734190d3fb18da434f2e46a977259a3004 /inc/init.php | |
parent | d7e6bba9c015a4922e6ef0d0d314255cc667227b (diff) | |
download | rpg-8a447e5c940231e5547004c8343801b7f59f1df9.tar.gz rpg-8a447e5c940231e5547004c8343801b7f59f1df9.tar.bz2 |
typo fix in compression method check FS#919
darcs-hash:20070514165529-7ad00-bf2cd39a2e34b03aa8d10dd8ca943b0b27127e79.gz
Diffstat (limited to 'inc/init.php')
-rw-r--r-- | inc/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/init.php b/inc/init.php index 8469a8230..d59b2088e 100644 --- a/inc/init.php +++ b/inc/init.php @@ -110,7 +110,7 @@ $_REQUEST = array_merge($_GET,$_POST); // disable gzip if not available - if($conf['compression'] == 'bz' && !function_exists('bzopen')){ + if($conf['compression'] == 'bz2' && !function_exists('bzopen')){ $conf['compression'] = 'gz'; } if($conf['compression'] == 'gz' && !function_exists('gzopen')){ |