summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-01-10 02:27:00 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2013-01-10 02:27:00 -0800
commit23dd7f1beaf9b567c1f3ec1438858cffc304dc13 (patch)
tree36d0e7cd1c3e5d97a029a1cad51939384d530d04 /apps
parent912050afa0bd963fdde7d7b223c32bb9bd8e1479 (diff)
parentccdaec62967d4870c85434f974914440bfb93027 (diff)
downloadnextcloud-server-23dd7f1beaf9b567c1f3ec1438858cffc304dc13.tar.gz
nextcloud-server-23dd7f1beaf9b567c1f3ec1438858cffc304dc13.zip
Merge pull request #1127 from owncloud/fixing-641-for-webdav-master
webdav returns "503 Service Unavailable" in case the ownCloud server is ...
Diffstat (limited to 'apps')
-rw-r--r--apps/files/appinfo/remote.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php
index 1713bcc22ce..6a78a1e0d75 100644
--- a/apps/files/appinfo/remote.php
+++ b/apps/files/appinfo/remote.php
@@ -45,6 +45,7 @@ $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, 'ownCloud'));
$server->addPlugin(new Sabre_DAV_Locks_Plugin($lockBackend));
$server->addPlugin(new Sabre_DAV_Browser_Plugin(false)); // Show something in the Browser, but no upload
$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin());
+$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
// And off we go!
$server->exec();