diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-10 20:34:20 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-10 20:34:20 -0700 |
commit | 5f6eedcc1a6e719c2ac6fa93219f700e0d430b59 (patch) | |
tree | 0c744404bd2ccab4a22e431bf4a1f98933f3e8d2 /Zotlabs | |
parent | 7cec3f4dbf53d64ab5d7fd579e98bbdf56a7a605 (diff) | |
parent | 7892ed9e77949b0e05cfc4e1b8fd17e6188c5f01 (diff) | |
download | volse-hubzilla-5f6eedcc1a6e719c2ac6fa93219f700e0d430b59.tar.gz volse-hubzilla-5f6eedcc1a6e719c2ac6fa93219f700e0d430b59.tar.bz2 volse-hubzilla-5f6eedcc1a6e719c2ac6fa93219f700e0d430b59.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Cdav.php | 9 | ||||
-rw-r--r-- | Zotlabs/Storage/BasicAuth.php | 9 | ||||
-rw-r--r-- | Zotlabs/Widget/Wiki_pages.php | 8 |
3 files changed, 13 insertions, 13 deletions
diff --git a/Zotlabs/Module/Cdav.php b/Zotlabs/Module/Cdav.php index bc563ab43..d0619ef0b 100644 --- a/Zotlabs/Module/Cdav.php +++ b/Zotlabs/Module/Cdav.php @@ -85,6 +85,15 @@ class Cdav extends \Zotlabs\Web\Controller { if($channel['channel_timezone']) $auth->setTimezone($channel['channel_timezone']); $auth->observer = $channel['channel_hash']; + + $principalUri = 'principals/' . $channel['channel_address']; + if(!cdav_principal($principalUri)) { + $this->activate($pdo, $channel); + if(!cdav_principal($principalUri)) { + return; + } + } + } diff --git a/Zotlabs/Storage/BasicAuth.php b/Zotlabs/Storage/BasicAuth.php index 0ff9fad13..ad2582bb2 100644 --- a/Zotlabs/Storage/BasicAuth.php +++ b/Zotlabs/Storage/BasicAuth.php @@ -188,13 +188,10 @@ class BasicAuth extends DAV\Auth\Backend\AbstractBasic { protected function check_module_access($channel_id) { if($channel_id && \App::$module === 'cdav') { - $x = get_pconfig($channel_id,'cdav','enabled'); - if(! $x) { - $this->module_disabled = true; - return false; - } + return true; } - return true; + $this->module_disabled = true; + return false; } /** diff --git a/Zotlabs/Widget/Wiki_pages.php b/Zotlabs/Widget/Wiki_pages.php index 53966b06f..7285e2b42 100644 --- a/Zotlabs/Widget/Wiki_pages.php +++ b/Zotlabs/Widget/Wiki_pages.php @@ -11,14 +11,8 @@ class Wiki_pages { return; if(! $arr['resource_id']) { - - $c = \App::get_channel(); - - if(! $c) - $c = channelx_by_nick(argv(1)); - + $c = channelx_by_nick(argv(1)); $w = \Zotlabs\Lib\NativeWiki::exists_by_name($c['channel_id'],argv(2)); - $arr = array( 'resource_id' => $w['resource_id'], 'channel_id' => $c['channel_id'], |