aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Pubstream.php
diff options
context:
space:
mode:
authorgit-marijus <mario@mariovavti.com>2017-08-06 21:40:39 +0200
committergit-marijus <mario@mariovavti.com>2017-08-06 23:34:05 +0200
commit0085b64b2bb22cf463ec66376d06d64d5b5b5730 (patch)
tree0f99658f095296826b21c7545a6657bd77e1de19 /Zotlabs/Module/Pubstream.php
parent913046aa28740f91d5aa16f0bfa8c764a7a24c03 (diff)
downloadvolse-hubzilla-0085b64b2bb22cf463ec66376d06d64d5b5b5730.tar.gz
volse-hubzilla-0085b64b2bb22cf463ec66376d06d64d5b5b5730.tar.bz2
volse-hubzilla-0085b64b2bb22cf463ec66376d06d64d5b5b5730.zip
consolidate disable_discover_tab config if it was not yet set to either 1 or 0 in DB
Diffstat (limited to 'Zotlabs/Module/Pubstream.php')
-rw-r--r--Zotlabs/Module/Pubstream.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Pubstream.php b/Zotlabs/Module/Pubstream.php
index 28c34425c..42aa2b51b 100644
--- a/Zotlabs/Module/Pubstream.php
+++ b/Zotlabs/Module/Pubstream.php
@@ -16,8 +16,8 @@ class Pubstream extends \Zotlabs\Web\Controller {
return login();
}
-
- if(get_config('system','disable_discover_tab'))
+ $disable_discover_tab = get_config('system','disable_discover_tab') || get_config('system','disable_discover_tab') === false;
+ if($disable_discover_tab)
return;
$item_normal = item_normal();