diff options
author | friendica <info@friendica.com> | 2014-01-21 20:42:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-21 20:42:10 -0800 |
commit | a13393fb230f83cbb93ad36494ce337ef5c48ee0 (patch) | |
tree | 36141d367bc0e9b39dc7b3791e1e304fc05a0940 /mod/cloud.php | |
parent | c41d3b2d5393de6ae810cd4518851d6d633be279 (diff) | |
download | volse-hubzilla-a13393fb230f83cbb93ad36494ce337ef5c48ee0.tar.gz volse-hubzilla-a13393fb230f83cbb93ad36494ce337ef5c48ee0.tar.bz2 volse-hubzilla-a13393fb230f83cbb93ad36494ce337ef5c48ee0.zip |
seems you can't easily have a blank password for DAV guests, so the guest password is now +++
Diffstat (limited to 'mod/cloud.php')
-rw-r--r-- | mod/cloud.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/cloud.php b/mod/cloud.php index 3332cf18c..de42249fe 100644 --- a/mod/cloud.php +++ b/mod/cloud.php @@ -85,12 +85,14 @@ function cloud_init(&$a) { if(! $auth->observer) { try { - $auth->Authenticate($server,'Red Matrix'); + $auth->Authenticate($server, t('Red Matrix - Guests: Username: {your email address}, Password: +++')); } catch ( Exception $e) { - + logger('mod_cloud: auth exception' . $e->getMessage()); + http_status_exit($e->getHTTPCode(),$e->getMessage()); } } + // $browser = new DAV\Browser\Plugin(); $browser = new RedBrowser($auth); |