typo fix in compression method check FS#919

darcs-hash:20070514165529-7ad00-bf2cd39a2e34b03aa8d10dd8ca943b0b27127e79.gz
This commit is contained in:
Andreas Gohr 2007-05-14 18:55:29 +02:00
parent d7e6bba9c0
commit 8a447e5c94
1 changed files with 1 additions and 1 deletions

View File

@ -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')){