From: Zach Copley Date: Thu, 20 Nov 2008 21:30:22 +0000 (-0500) Subject: Public tabs - only show 'Featured' tab when featured users are defined in config.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=04381435a8ea42033556660df254dfaa9417f4d8;p=quix0rs-gnu-social.git Public tabs - only show 'Featured' tab when featured users are defined in config.php darcs-hash:20081120213022-7b5ce-df10d289e8c0e1d06f6e10d5ff642eb93752be19.gz --- 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');