diff options
author | friendica <info@friendica.com> | 2014-01-02 17:49:39 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-02 17:49:39 -0800 |
commit | a1c198814d4ae82314f87610b2ea2157e11e6b7c (patch) | |
tree | 0ba4692e813c949d6c27a0985566e6179e47fefa /mod | |
parent | ad08561d84fa73e672b3621c511a95714f4ba99e (diff) | |
download | volse-hubzilla-a1c198814d4ae82314f87610b2ea2157e11e6b7c.tar.gz volse-hubzilla-a1c198814d4ae82314f87610b2ea2157e11e6b7c.tar.bz2 volse-hubzilla-a1c198814d4ae82314f87610b2ea2157e11e6b7c.zip |
basic browsing and file retrieval for webdav working - uploads not yet. A lot of permissions stuff is in place so it's marginally (but probably not completely) permission controlled
Diffstat (limited to 'mod')
-rw-r--r-- | mod/cloud.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/cloud.php b/mod/cloud.php index 209a74c74..3880c1fd5 100644 --- a/mod/cloud.php +++ b/mod/cloud.php @@ -102,7 +102,7 @@ function cloud_init(&$a) { $auth = new RedBasicAuth(); - $rootDirectory = new RedDirectory('/cloud',$auth); + $rootDirectory = new RedDirectory('/',$auth); $server = new DAV\Server($rootDirectory); $lockBackend = new DAV\Locks\Backend\File('store/data/locks'); $lockPlugin = new DAV\Locks\Plugin($lockBackend); |