Merge pull request #16042 from owncloud/fix-output-buffering

Remove hard-dependency on disabled output_buffering
This commit is contained in:
Thomas Müller 2015-05-04 16:43:32 +02:00
commit 08b98a8ede
2 changed files with 2 additions and 1 deletions

View file

@ -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();

View file

@ -672,7 +672,6 @@ class OC_Util {
),
'ini' => [
'mbstring.func_overload' => 0,
'output_buffering' => false,
'default_charset' => 'UTF-8',
],
);