forked from GNUsocial/gnu-social
Fix a couple of errors in PublicGroupNav
This commit is contained in:
parent
b32a47807e
commit
1915a07fda
@ -53,7 +53,7 @@ require_once INSTALLDIR.'/lib/widget.php';
|
|||||||
* @see HTMLOutputter
|
* @see HTMLOutputter
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class PublicGroupNav
|
class PublicGroupNav extends Widget
|
||||||
{
|
{
|
||||||
var $action = null;
|
var $action = null;
|
||||||
|
|
||||||
@ -79,18 +79,18 @@ class PublicGroupNav
|
|||||||
{
|
{
|
||||||
$this->action->elementStart('ul', array('class' => 'nav'));
|
$this->action->elementStart('ul', array('class' => 'nav'));
|
||||||
|
|
||||||
$this->menuItem(common_local_url('public'), _('Public'),
|
$this->out->menuItem(common_local_url('public'), _('Public'),
|
||||||
_('Public timeline'), $this->action == 'public');
|
_('Public timeline'), $this->action == 'public');
|
||||||
|
|
||||||
$this->menuItem(common_local_url('tag'), _('Recent tags'),
|
$this->out->menuItem(common_local_url('tag'), _('Recent tags'),
|
||||||
_('Recent tags'), $this->action == 'tag');
|
_('Recent tags'), $this->action == 'tag');
|
||||||
|
|
||||||
if (count(common_config('nickname', 'featured')) > 0) {
|
if (count(common_config('nickname', 'featured')) > 0) {
|
||||||
$this->menuItem(common_local_url('featured'), _('Featured'),
|
$this->out->menuItem(common_local_url('featured'), _('Featured'),
|
||||||
_('Featured users'), $this->action == 'featured');
|
_('Featured users'), $this->action == 'featured');
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->menuItem(common_local_url('favorited'), _('Popular'),
|
$this->out->menuItem(common_local_url('favorited'), _('Popular'),
|
||||||
_("Popular notices"), $this->action == 'favorited');
|
_("Popular notices"), $this->action == 'favorited');
|
||||||
|
|
||||||
$this->action->elementEnd('ul');
|
$this->action->elementEnd('ul');
|
||||||
|
Loading…
Reference in New Issue
Block a user