Skip to content

Commit e19696b

Browse files
committed
Revert "ob_start() is marked as PHP_OUTPUT_HANDLER_REMOVABLE (i.e. it is not flushable)"
This reverts commit 19ecb8c.
1 parent 1450729 commit e19696b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Bridges/HttpTracy/SessionPanel.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class SessionPanel extends Nette\Object implements Tracy\IBarPanel
2323
*/
2424
public function getTab()
2525
{
26-
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
26+
ob_start();
2727
require __DIR__ . '/templates/SessionPanel.tab.phtml';
2828
return ob_get_clean();
2929
}
@@ -35,7 +35,7 @@ public function getTab()
3535
*/
3636
public function getPanel()
3737
{
38-
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
38+
ob_start();
3939
require __DIR__ . '/templates/SessionPanel.panel.phtml';
4040
return ob_get_clean();
4141
}

0 commit comments

Comments
 (0)