X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fpublicgroupnav.php;h=1e5ed73596da1c55b7db917bd74954d0d2d54966;hb=0357ea505dd8aba293a67f0bfa122c3bbd29e51b;hp=ee087d8a861835847d43dbf4caa146123d48175e;hpb=e847b9a128f3b943b746875858e1148665f14ce0;p=quix0rs-gnu-social.git diff --git a/lib/publicgroupnav.php b/lib/publicgroupnav.php index ee087d8a86..1e5ed73596 100644 --- a/lib/publicgroupnav.php +++ b/lib/publicgroupnav.php @@ -82,22 +82,22 @@ class PublicGroupNav extends Widget $this->action->elementStart('dd', null); $this->action->elementStart('ul', array('class' => 'nav')); - $this->out->menuItem(common_local_url('public'), _('Public'), 'nav_timeline_public', - _('Public timeline'), $this->action == 'public'); + $this->out->menuItem(common_local_url('public'), _('Public'), + _('Public timeline'), $this->action == 'public', 'nav_timeline_public'); - $this->out->menuItem(common_local_url('tag'), _('Recent tags'), 'nav_recent-tags', - _('Recent tags'), $this->action == 'tag'); + $this->out->menuItem(common_local_url('tag'), _('Recent tags'), + _('Recent tags'), $this->action == 'tag', 'nav_recent-tags'); if (count(common_config('nickname', 'featured')) > 0) { - $this->out->menuItem(common_local_url('featured'), _('Featured'), 'nav_featured', - _('Featured users'), $this->action == 'featured'); + $this->out->menuItem(common_local_url('featured'), _('Featured'), + _('Featured users'), $this->action == 'featured', 'nav_featured'); } - $this->out->menuItem(common_local_url('favorited'), _('Popular'), 'nav_timeline_favorited', - _("Popular notices"), $this->action == 'favorited'); + $this->out->menuItem(common_local_url('favorited'), _('Popular'), + _("Popular notices"), $this->action == 'favorited', 'nav_timeline_favorited'); $this->action->elementEnd('ul'); $this->action->elementEnd('dd'); - $this->action->elementEnd('dl') + $this->action->elementEnd('dl'); } }