From 04381435a8ea42033556660df254dfaa9417f4d8 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 20 Nov 2008 16:30:22 -0500 Subject: [PATCH] Public tabs - only show 'Featured' tab when featured users are defined in config.php darcs-hash:20081120213022-7b5ce-df10d289e8c0e1d06f6e10d5ff642eb93752be19.gz --- lib/stream.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/stream.php b/lib/stream.php index b19bf7c0fa..135c59727c 100644 --- a/lib/stream.php +++ b/lib/stream.php @@ -38,8 +38,10 @@ class StreamAction extends PersonalAction { common_menu_item(common_local_url('tag'), _('Recent tags'), _('Recent tags'), $action == 'tag'); - common_menu_item(common_local_url('featured'), _('Featured'), - _('Notices from featured Users'), $action == 'featured'); + if (count(common_config('nickname', 'featured')) > 0) { + common_menu_item(common_local_url('featured'), _('Featured'), + _('Notices from featured Users'), $action == 'featured'); + } common_menu_item(common_local_url('favorited'), _('Favorited'), _("Most favorited notices"), $action == 'favorited');