mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-20 03:16:12 +00:00
mvc: configdStream: remove ob_end_flush()
Our default PHP configuration already has output buffering set to 0, and since there is no explicit buffering start, the ob_end_flush() will throw two exceptions on development mode when streaming a log file. We likely don't need this anymore so removing it here.
This commit is contained in:
parent
caf83e598d
commit
7c05e524b0
@ -180,7 +180,7 @@ class ApiControllerBase extends ControllerRoot
|
||||
foreach ($headers as $header) {
|
||||
header($header);
|
||||
}
|
||||
ob_end_flush();
|
||||
|
||||
fpassthru($response);
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user