diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-05-07 18:39:34 -0400 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-05-07 18:39:34 -0400 |
commit | bbbae3f42dc3c0596c7cf52fdc78e8f9487e5906 (patch) | |
tree | ee8a0d3c4c811ca46f6a6d832d407d8453fcf973 | |
parent | 0746794e8145eac0608eef26b9c6d3d0ae5319cc (diff) | |
parent | 2b77c9a74bf4393dd3894420e602e7212c29ba42 (diff) | |
download | volse-hubzilla-bbbae3f42dc3c0596c7cf52fdc78e8f9487e5906.tar.gz volse-hubzilla-bbbae3f42dc3c0596c7cf52fdc78e8f9487e5906.tar.bz2 volse-hubzilla-bbbae3f42dc3c0596c7cf52fdc78e8f9487e5906.zip |
Merge remote-tracking branch 'upstream/dev' into plugin-repo
-rw-r--r-- | Zotlabs/Module/Dav.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Dav.php b/Zotlabs/Module/Dav.php index 42eb3d0c1..9af059974 100644 --- a/Zotlabs/Module/Dav.php +++ b/Zotlabs/Module/Dav.php @@ -91,10 +91,10 @@ class Dav extends \Zotlabs\Web\Controller { $rootDirectory = new \Zotlabs\Storage\Directory('/', $auth); // A SabreDAV server-object - $server = new \SDAV\Server($rootDirectory); + $server = new SDAV\Server($rootDirectory); // prevent overwriting changes each other with a lock backend - $lockBackend = new \SDAV\Locks\Backend\File('store/[data]/locks'); - $lockPlugin = new \SDAV\Locks\Plugin($lockBackend); + $lockBackend = new SDAV\Locks\Backend\File('store/[data]/locks'); + $lockPlugin = new SDAV\Locks\Plugin($lockBackend); $server->addPlugin($lockPlugin); |