Bug #21487 » 12498.diff
t3lib/class.t3lib_div.php (working copy) | ||
---|---|---|
* @return void
|
||
*/
|
||
public static function flushOutputBuffers() {
|
||
$obContent = '';
|
||
while (ob_get_level()) {
|
||
ob_end_flush();
|
||
$obContent .= ob_get_clean();
|
||
}
|
||
header('Content-Encoding: None', TRUE);
|
||
echo $obContent;
|
||
}
|
||
}
|
||