Bug #41648 ยป endless-loop-patch.patch
typo3_src-4.6.12/t3lib/class.t3lib_div.php 2012-10-07 07:08:29.214486605 +0200 | ||
---|---|---|
public static function flushOutputBuffers() {
|
||
$obContent = '';
|
||
while ($obContent .= ob_get_clean()) {
|
||
;
|
||
while ($content = ob_get_clean()) {
|
||
$obContent .= $content;
|
||
}
|
||
// if previously a "Content-Encoding: whatever" has been set, we have to unset it
|