From 1005618fafdea956e2941d871bc74cb1158aa043 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 14 Jan 2015 13:52:34 -0800 Subject: [PATCH] honor disable_discover_tab in mod/home - it isn't a tab here but basically block public content from showing if it's set. --- mod/home.php | 5 +++++ version.inc | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/mod/home.php b/mod/home.php index e82aab385..2e57a2ab9 100644 --- a/mod/home.php +++ b/mod/home.php @@ -109,6 +109,11 @@ function home_content(&$a, $update = 0, $load = false) { } else { + if(get_config('system','disable_discover_tab')) { + call_hooks('home_content',$o); + return $o; + } + if(! $update) { $maxheight = get_config('system','home_divmore_height'); diff --git a/version.inc b/version.inc index 5fc4bc7c6..7eb391e00 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-01-12.917 +2015-01-14.918