diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-08-25 19:47:55 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-08-25 19:47:55 +0200 |
commit | fe8934905b38990a94d8d400a689538345d5b5a5 (patch) | |
tree | 2afd2272158fdcb0de5c6dba8e2e11d131abc3ef | |
parent | 501af51e6336cb2c1985f28f2355c0030a0c3660 (diff) | |
download | rpg-fe8934905b38990a94d8d400a689538345d5b5a5.tar.gz rpg-fe8934905b38990a94d8d400a689538345d5b5a5.tar.bz2 |
typo fix for compression check
darcs-hash:20060825174755-7ad00-e67f267dd1552ba22b01662de6dbb84faf33e5f8.gz
-rw-r--r-- | inc/init.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/init.php b/inc/init.php index b6fdc0e73..354e0de8a 100644 --- a/inc/init.php +++ b/inc/init.php @@ -94,10 +94,10 @@ @ini_set('magic_quotes_sybase',0); // disable gzip if not available - if($conf['compression'] == 'bzip2' && !function_exists('bzopen')){ - $conf['compression'] = 'gzip'; + if($conf['compression'] == 'bz' && !function_exists('bzopen')){ + $conf['compression'] = 'gz'; } - if($conf['compression'] == 'gzip' && !function_exists('gzopen')){ + if($conf['compression'] == 'gz' && !function_exists('gzopen')){ $conf['compression'] = 0; } |