summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-04-16 16:31:15 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2014-04-16 16:31:15 +0200
commit69644747687bc59ea8db0dec6ac8c51979b03f57 (patch)
treed02b2bd606ea964cbbd6ed86d9dfa01972365cca
parentf16a19bea98cb0e506f23beed3b657cab6bae62d (diff)
downloadnextcloud-server-69644747687bc59ea8db0dec6ac8c51979b03f57.tar.gz
nextcloud-server-69644747687bc59ea8db0dec6ac8c51979b03f57.zip
adding the plugin to the server object
-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 4cecaf207fd..2ab097df50e 100644
--- a/apps/files/appinfo/remote.php
+++ b/apps/files/appinfo/remote.php
@@ -47,6 +47,7 @@ $defaults = new OC_Defaults();
$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend, $defaults->getName()));
$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_FilesPlugin());
$server->addPlugin(new OC_Connector_Sabre_QuotaPlugin());
$server->addPlugin(new OC_Connector_Sabre_MaintenancePlugin());
$server->addPlugin(new OC_Connector_Sabre_ExceptionLoggerPlugin('webdav'));