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 2ab5b97.
  • Loading branch information
dg committed Feb 8, 2016
1 parent 120b37e commit fb96e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Bridges/DITracy/ContainerPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct(Container $container)
*/
public function getTab()
{
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
ob_start();
$elapsedTime = $this->elapsedTime;
require __DIR__ . '/templates/ContainerPanel.tab.phtml';
return ob_get_clean();
Expand Down Expand Up @@ -68,7 +68,7 @@ public function getPanel()
}
}

ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
ob_start();
require __DIR__ . '/templates/ContainerPanel.panel.phtml';
return ob_get_clean();
}
Expand Down

0 comments on commit fb96e4f

Please sign in to comment.