function showCore()
{
$this->elementStart('div', array('id' => 'core'));
+ $this->elementStart('dl', array('id' => 'site_nav_local_views'));
+ $this->element('dt', null, _('Local views'));
+ $this->elementStart('dd');
$this->showLocalNav();
+ $this->elementEnd('dd');
+ $this->elementEnd('dl');
$this->showContentBlock();
$this->showAside();
$this->elementEnd('div');
function show()
{
- $this->action->elementStart('dl', array('id' => 'site_nav_local_views'));
- $this->action->element('dt', null, _('Local views'));
- $this->action->elementStart('dd', null);
$this->action->elementStart('ul', array('class' => 'nav'));
$this->out->menuItem(common_local_url('public'), _('Public'),
_("Popular notices"), $this->action == 'favorited', 'nav_timeline_favorited');
$this->action->elementEnd('ul');
- $this->action->elementEnd('dd');
- $this->action->elementEnd('dl');
}
}