diff options
author | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2014-10-13 21:19:07 +0200 |
---|---|---|
committer | tuscanhobbit <tuscanhobbit@users.noreply.github.com> | 2014-10-13 21:19:07 +0200 |
commit | 9dc3b01959211678aa392f173f4644971c91ba2d (patch) | |
tree | 8515cd7a3568011012d9b82e323d612bd48b414d /mod/cloud.php | |
parent | 56f6f696bd5dd5b8120d562d9f43fe94d8e6dd41 (diff) | |
parent | 240cbc8798cf64ee6226db01dfd6e5b0bae8b85e (diff) | |
download | volse-hubzilla-9dc3b01959211678aa392f173f4644971c91ba2d.tar.gz volse-hubzilla-9dc3b01959211678aa392f173f4644971c91ba2d.tar.bz2 volse-hubzilla-9dc3b01959211678aa392f173f4644971c91ba2d.zip |
Merge from master
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 +} |