summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-12-13 02:09:13 -0800
committerThomas Müller <thomas.mueller@tmit.eu>2012-12-13 02:09:13 -0800
commit9fb1746ff9f2eea2a60320e10797a54abdbacd2a (patch)
treed3f558b9ba09a3b01141be396a6be85ba1b97143 /apps
parentb0a81b5b0d727ba809bf723fc4d0504e5910a999 (diff)
parentc50bbc8c0447bea0aa5c20d466bc12aaa695fe18 (diff)
downloadnextcloud-server-9fb1746ff9f2eea2a60320e10797a54abdbacd2a.tar.gz
nextcloud-server-9fb1746ff9f2eea2a60320e10797a54abdbacd2a.zip
Merge pull request #851 from owncloud/webdav-quota-fix-stable45
Webdav quota fix stable45
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 b5ede65264d..75efe5c8549 100644
--- a/apps/files/appinfo/remote.php
+++ b/apps/files/appinfo/remote.php
@@ -43,6 +43,7 @@ $server->setBaseUri($baseuri);
$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());
// And off we go!
$server->exec();