summaryrefslogtreecommitdiffstats
path: root/apps/files/appinfo
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-01-09 00:37:50 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-01-09 00:37:50 +0100
commitccdaec62967d4870c85434f974914440bfb93027 (patch)
tree44918ce0f97edcb15492785f6d7700adce8d7af6 /apps/files/appinfo
parentb69328e1d1f0888c2541e3f0be27e534f980adb4 (diff)
downloadnextcloud-server-ccdaec62967d4870c85434f974914440bfb93027.tar.gz
nextcloud-server-ccdaec62967d4870c85434f974914440bfb93027.zip
webdav returns "503 Service Unavailable" in case the ownCloud server is currently in maintenance mode.
Diffstat (limited to 'apps/files/appinfo')
-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();