diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-09 00:37:50 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-09 00:37:50 +0100 |
commit | ccdaec62967d4870c85434f974914440bfb93027 (patch) | |
tree | 44918ce0f97edcb15492785f6d7700adce8d7af6 /apps/files/appinfo | |
parent | b69328e1d1f0888c2541e3f0be27e534f980adb4 (diff) | |
download | nextcloud-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.php | 1 |
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(); |