diff options
author | git-marijus <mario@mariovavti.com> | 2017-08-06 21:40:39 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2017-08-06 21:40:39 +0200 |
commit | 68b32cd8f414fc3df1279a3458082b2d8dfc3430 (patch) | |
tree | 40768e806965ade0f5157fcc0f53bb30578e93fc /include/conversation.php | |
parent | a618f70f56efdcaaf9da6dcfcab9cce6a933303b (diff) | |
download | volse-hubzilla-68b32cd8f414fc3df1279a3458082b2d8dfc3430.tar.gz volse-hubzilla-68b32cd8f414fc3df1279a3458082b2d8dfc3430.tar.bz2 volse-hubzilla-68b32cd8f414fc3df1279a3458082b2d8dfc3430.zip |
consolidate disable_discover_tab config if it was not yet set to either 1 or 0 in DB
Diffstat (limited to 'include/conversation.php')
-rw-r--r-- | include/conversation.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/conversation.php b/include/conversation.php index 460c97efb..13ae571d6 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1624,11 +1624,9 @@ function network_tabs() { // tabs $tabs = array(); - $d = get_config('system','disable_discover_tab'); - if($d === false) - $d = 1; + $disable_discover_tab = get_config('system','disable_discover_tab') || get_config('system','disable_discover_tab') === false; - if(! $d) { + if(! $disable_discover_tab) { $tabs[] = array( 'label' => t('Discover'), 'url' => z_root() . '/' . $cmd . '?f=&fh=1' , |