diff options
author | friendica <info@friendica.com> | 2014-10-12 18:00:01 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-12 18:00:01 -0700 |
commit | 084cddb32c58b7e26ff5080bab4a5c5073eeca39 (patch) | |
tree | dc42a1406a9d5ddcbde64dbd0f038a371365417f /mod/cloud.php | |
parent | 1f976fbfe6d25cd967dd054f5a6ccc804a671054 (diff) | |
parent | b1ea4f9e1161d4edf3b8c858df91ffbce65199bb (diff) | |
download | volse-hubzilla-084cddb32c58b7e26ff5080bab4a5c5073eeca39.tar.gz volse-hubzilla-084cddb32c58b7e26ff5080bab4a5c5073eeca39.tar.bz2 volse-hubzilla-084cddb32c58b7e26ff5080bab4a5c5073eeca39.zip |
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'mod/cloud.php')
-rw-r--r-- | mod/cloud.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/cloud.php b/mod/cloud.php index 149a6da5d..27724f6b0 100644 --- a/mod/cloud.php +++ b/mod/cloud.php @@ -63,7 +63,7 @@ function cloud_init(&$a) { if ($which) profile_load($a, $which, $profile); - $auth = new RedBasicAuth(); + $auth = new RedDAV\RedBasicAuth(); $ob_hash = get_observer_hash(); @@ -91,7 +91,7 @@ function cloud_init(&$a) { $_SERVER['REQUEST_URI'] = strip_zids($_SERVER['REQUEST_URI']); $_SERVER['REQUEST_URI'] = preg_replace('/[\?&]davguest=(.*?)([\?&]|$)/ism', '', $_SERVER['REQUEST_URI']); - $rootDirectory = new RedDirectory('/', $auth); + $rootDirectory = new RedDAV\RedDirectory('/', $auth); // A SabreDAV server-object $server = new DAV\Server($rootDirectory); @@ -117,7 +117,7 @@ function cloud_init(&$a) { if ((! $auth->observer) && ($_SERVER['REQUEST_METHOD'] === 'GET')) { try { $x = RedFileData('/' . $a->cmd, $auth); - if($x instanceof RedFile) + if($x instanceof RedDAV\RedFile) $isapublic_file = true; } catch (Exception $e) { @@ -150,4 +150,4 @@ function cloud_init(&$a) { $server->exec(); killme(); -}
\ No newline at end of file +} |