diff options
author | habeascodice <habeascodice@federated.social> | 2014-10-13 03:22:26 -0700 |
---|---|---|
committer | habeascodice <habeascodice@federated.social> | 2014-10-13 03:22:26 -0700 |
commit | e4880d07d2aa447425d0b7dc3656e84de08006c0 (patch) | |
tree | 45bd5de70899a2afe03b2f213aef7cfd430a52a2 /mod/cloud.php | |
parent | c854f8c238da2df08b52249142ad24ef66e422d1 (diff) | |
parent | a512d1a4aab35ac874ccbff89d84fdd6d5b3343f (diff) | |
download | volse-hubzilla-e4880d07d2aa447425d0b7dc3656e84de08006c0.tar.gz volse-hubzilla-e4880d07d2aa447425d0b7dc3656e84de08006c0.tar.bz2 volse-hubzilla-e4880d07d2aa447425d0b7dc3656e84de08006c0.zip |
Merge remote branch 'upstream/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 +} |