aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2014-03-31 09:22:00 +1100
committerRedMatrix <info@friendica.com>2014-03-31 09:22:00 +1100
commit8efef6f98b540da9fd256bf108eeb3b32666c170 (patch)
tree0a26ace9d3ead0b41627a9c53818f5a8e0a21bec /mod/network.php
parentb00478d3b5e6d12e2c726fbdde931b5e64ad5da9 (diff)
parent4a2805e12ebb7c72dd7e72de4fc192149867706a (diff)
downloadvolse-hubzilla-8efef6f98b540da9fd256bf108eeb3b32666c170.tar.gz
volse-hubzilla-8efef6f98b540da9fd256bf108eeb3b32666c170.tar.bz2
volse-hubzilla-8efef6f98b540da9fd256bf108eeb3b32666c170.zip
Merge pull request #387 from beardy-unixer/master
Default discover to on
Diffstat (limited to 'mod/network.php')
-rw-r--r--mod/network.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php
index 09098946f..8a05a5eaa 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -319,7 +319,7 @@ function network_content(&$a, $update = 0, $load = false) {
}
- if($firehose && get_config('system','discover_tab')) {
+ if($firehose && (! get_config('system','disable_discover_tab'))) {
require_once('include/identity.php');
$sys = get_sys_channel();
$uids = " and item.uid = " . intval($sys['channel_id']) . " ";