summaryrefslogtreecommitdiff
path: root/lib/stream.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/stream.php')
-rw-r--r--lib/stream.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/stream.php b/lib/stream.php
index b19bf7c0f..135c59727 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');