Skip to content

Commit 9948322

Browse files
committedFeb 8, 2016
Revert "ob_start() is marked as PHP_OUTPUT_HANDLER_REMOVABLE (i.e. it is not flushable)"
This reverts commit d5fa57b.
1 parent 1697f75 commit 9948322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/Bridges/DatabaseTracy/ConnectionPanel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function getTab()
100100
$name = $this->name;
101101
$count = $this->count;
102102
$totalTime = $this->totalTime;
103-
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
103+
ob_start();
104104
require __DIR__ . '/templates/ConnectionPanel.tab.phtml';
105105
return ob_get_clean();
106106
}
@@ -131,7 +131,7 @@ public function getPanel()
131131
$queries[] = $query;
132132
}
133133

134-
ob_start(NULL, 0, PHP_OUTPUT_HANDLER_REMOVABLE);
134+
ob_start();
135135
require __DIR__ . '/templates/ConnectionPanel.panel.phtml';
136136
return ob_get_clean();
137137
}

0 commit comments

Comments
 (0)
Please sign in to comment.