Bug #19700 ยป 9947.diff
typo3/init.php (working copy) | ||
---|---|---|
// *******************************
|
||
error_reporting (E_ALL ^ E_NOTICE);
|
||
// *******************************
|
||
// Prevent any unwanted output that may corrupt AJAX/compression. Note: this does
|
||
// not interfeer with "die()" or "echo"+"exit()" messages!
|
||
// *******************************
|
||
ob_start();
|
||
// *******************************
|
||
// Define constants
|
||
... | ... | |
// ****************
|
||
// compression
|
||
// ****************
|
||
if ($TYPO3_CONF_VARS['BE']['compressionLevel']) {
|
||
ob_start();
|
||
require_once (PATH_t3lib.'class.gzip_encode.php');
|
||
ob_clean();
|
||
if (extension_loaded('zlib') && $TYPO3_CONF_VARS['BE']['compressionLevel']) {
|
||
@ini_set('zlib.output_compression_level', $TYPO3_CONF_VARS['BE']['compressionLevel']);
|
||
ob_start('ob_gzhandler');
|
||
}
|
||
?>
|