Skip to content

Commit

Permalink
Revert "ob_start() is marked as PHP_OUTPUT_HANDLER_REMOVABLE (i.e. it…
Browse files Browse the repository at this point in the history
… is not flushable)"

This reverts commit 19ecb8c.
  • Loading branch information
dg committed Feb 8, 2016
1 parent 1450729 commit e19696b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bridges/HttpTracy/SessionPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SessionPanel extends Nette\Object implements Tracy\IBarPanel
*/
public function getTab()
{
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
ob_start();
require __DIR__ . '/templates/SessionPanel.tab.phtml';
return ob_get_clean();
}
Expand All @@ -35,7 +35,7 @@ public function getTab()
*/
public function getPanel()
{
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
ob_start();
require __DIR__ . '/templates/SessionPanel.panel.phtml';
return ob_get_clean();
}
Expand Down

0 comments on commit e19696b

Please sign in to comment.