diff options
-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; } |