coding style

This commit is contained in:
Arthur Schiwon 2012-11-14 12:59:36 +01:00
parent 4a75c539ed
commit 64a8a0c872
1 changed files with 3 additions and 3 deletions

View File

@ -30,12 +30,12 @@ abstract class OC_Minimizer {
$cache->set($cache_key.'.gz', $gzout);
OC_Response::setETagHeader($etag);
}
// on some systems (e.g. SLES 11, but not Ubuntu) mod_deflate and zlib compression will compress the output twice.
// on some systems (e.g. SLES 11, but not Ubuntu) mod_deflate and zlib compression will compress the output twice.
// This results in broken core.css and core.js. To avoid it, we switch off zlib compression.
// Since mod_deflate is still active, Apache will compress what needs to be compressed, i.e. no disadvantage.
if(function_exists('apache_setenv') && ini_get('zlib.output_compression')) {
ini_set('zlib.output_compression', 'Off');
}
ini_set('zlib.output_compression', 'Off');
}
if ($encoding = OC_Request::acceptGZip()) {
header('Content-Encoding: '.$encoding);
$out = $gzout;