diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-11-25 06:15:08 -0800 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-11-25 06:15:08 -0800 |
commit | f005254a9184a862d9602cbd8b5c6e135b618afc (patch) | |
tree | e84db6fe30a6ad11b797dd3edeb9d752956a5da9 /apps/files/appinfo | |
parent | ffd14dfd0931857fb49ec5b1cedb9dbe1bac392a (diff) | |
parent | eaf8399aafdbe1afe3303adad47415eb0d0c53cb (diff) | |
download | nextcloud-server-f005254a9184a862d9602cbd8b5c6e135b618afc.tar.gz nextcloud-server-f005254a9184a862d9602cbd8b5c6e135b618afc.zip |
Merge pull request #576 from owncloud/webdav_output_buffer
make sure the output buffer is closed when handeling webdav
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r-- | apps/files/appinfo/remote.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index 400a978fb17..0ab7e7674c6 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -27,6 +27,8 @@ $RUNTIME_APPTYPES=array('filesystem', 'authentication', 'logging'); OC_App::loadApps($RUNTIME_APPTYPES); +ob_end_clean(); + // Backends $authBackend = new OC_Connector_Sabre_Auth(); $lockBackend = new OC_Connector_Sabre_Locks(); |