mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 01:28:08 -04:00
Merge pull request #16042 from owncloud/fix-output-buffering
Remove hard-dependency on disabled output_buffering
This commit is contained in:
commit
08b98a8ede
2 changed files with 2 additions and 1 deletions
|
|
@ -30,6 +30,8 @@
|
|||
// no php execution timeout for webdav
|
||||
set_time_limit(0);
|
||||
|
||||
// Turn off output buffering to prevent memory problems
|
||||
\OC_Util::obEnd();
|
||||
|
||||
// Backends
|
||||
$authBackend = new \OC\Connector\Sabre\Auth();
|
||||
|
|
|
|||
|
|
@ -672,7 +672,6 @@ class OC_Util {
|
|||
),
|
||||
'ini' => [
|
||||
'mbstring.func_overload' => 0,
|
||||
'output_buffering' => false,
|
||||
'default_charset' => 'UTF-8',
|
||||
],
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue