typo fix for compression check

darcs-hash:20060825174755-7ad00-e67f267dd1552ba22b01662de6dbb84faf33e5f8.gz
This commit is contained in:
Andreas Gohr 2006-08-25 19:47:55 +02:00
parent 501af51e63
commit fe8934905b
1 changed files with 3 additions and 3 deletions

View File

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