diff options
author | scambra <sergio@entrecables.com> | 2012-04-20 11:39:30 +0200 |
---|---|---|
committer | scambra <sergio@entrecables.com> | 2012-10-30 10:32:30 +0100 |
commit | d9c14292a4f588cbd2f47a70116ee6e680854b08 (patch) | |
tree | 794b782968eff7b60a379d6c47cfcdd12924cb75 /apps | |
parent | 3fdf239b478273155a68ec4ede8d4e4dd54b504d (diff) | |
download | nextcloud-server-d9c14292a4f588cbd2f47a70116ee6e680854b08.tar.gz nextcloud-server-d9c14292a4f588cbd2f47a70116ee6e680854b08.zip |
fix checking quota in webdav, adding a sabredav plugin
Diffstat (limited to 'apps')
-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 9c7b9ab6d5b..ecabe8621dd 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -41,6 +41,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(); |