Public tabs - only show 'Featured' tab when featured users are defined in config.php
darcs-hash:20081120213022-7b5ce-df10d289e8c0e1d06f6e10d5ff642eb93752be19.gz
This commit is contained in:
parent
f3b5b5de8a
commit
04381435a8
@ -38,8 +38,10 @@ class StreamAction extends PersonalAction {
|
|||||||
common_menu_item(common_local_url('tag'), _('Recent tags'),
|
common_menu_item(common_local_url('tag'), _('Recent tags'),
|
||||||
_('Recent tags'), $action == 'tag');
|
_('Recent tags'), $action == 'tag');
|
||||||
|
|
||||||
common_menu_item(common_local_url('featured'), _('Featured'),
|
if (count(common_config('nickname', 'featured')) > 0) {
|
||||||
_('Notices from featured Users'), $action == 'featured');
|
common_menu_item(common_local_url('featured'), _('Featured'),
|
||||||
|
_('Notices from featured Users'), $action == 'featured');
|
||||||
|
}
|
||||||
|
|
||||||
common_menu_item(common_local_url('favorited'), _('Favorited'),
|
common_menu_item(common_local_url('favorited'), _('Favorited'),
|
||||||
_("Most favorited notices"), $action == 'favorited');
|
_("Most favorited notices"), $action == 'favorited');
|
||||||
|
Loading…
Reference in New Issue
Block a user