diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-26 21:50:17 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-26 21:50:17 -0800 |
commit | 6c37a389807c28198a9eefae9dc479bc714981c3 (patch) | |
tree | eeb93bf6ec166eb7f87b38cf8931e1d1cc7487dd /boot.php | |
parent | 5277e79fa2dcac5ddd5e4577fb1719fe57ee3829 (diff) | |
download | volse-hubzilla-6c37a389807c28198a9eefae9dc479bc714981c3.tar.gz volse-hubzilla-6c37a389807c28198a9eefae9dc479bc714981c3.tar.bz2 volse-hubzilla-6c37a389807c28198a9eefae9dc479bc714981c3.zip |
fix public stream app permission check to match the recent fixes to the Module
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1686,10 +1686,15 @@ function remote_channel() { function can_view_public_stream() { - if((observer_prohibited(true)) - || (! (intval(get_config('system','open_pubstream',1))) && get_observer_hash())) { + if(observer_prohibited(true)) { return false; } + + if(! (intval(get_config('system','open_pubstream',1)))) { + if(! get_observer_hash()) { + return false; + } + } $site_firehose = ((intval(get_config('system','site_firehose',0))) ? true : false); $net_firehose = ((get_config('system','disable_discover_tab',1)) ? false : true); |