diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-04 14:28:00 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-04 14:28:00 -0800 |
commit | 0a55d6d51143acbf1084104d1626c7a4b88e6c15 (patch) | |
tree | c2fc3c5a117f5256aac76dce94cf6dd202df2171 /Zotlabs/Module/Ping.php | |
parent | 95311ad07e08c01ff8b9d865cbbc2a0b2bae5239 (diff) | |
parent | 0305983360568f991365cd815d081afedaa6d742 (diff) | |
download | volse-hubzilla-0a55d6d51143acbf1084104d1626c7a4b88e6c15.tar.gz volse-hubzilla-0a55d6d51143acbf1084104d1626c7a4b88e6c15.tar.bz2 volse-hubzilla-0a55d6d51143acbf1084104d1626c7a4b88e6c15.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'Zotlabs/Module/Ping.php')
-rw-r--r-- | Zotlabs/Module/Ping.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index 84f9d2a21..c1bce0d51 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -140,7 +140,7 @@ class Ping extends \Zotlabs\Web\Controller { db_utcnow(), db_quoteinterval('3 MINUTE') ); - $discover_tab_on = ((get_config('system','disable_discover_tab') != 1) ? true : false); + $discover_tab_on = ((get_config('system','disable_discover_tab') || get_config('system','disable_discover_tab') === false) ? false : true); $notify_pubs = ((local_channel()) ? ($vnotify & VNOTIFY_PUBS) && $discover_tab_on : $discover_tab_on); if($notify_pubs) { |