From c08eadc774c2231e6b434ba067e2d7115404606f Mon Sep 17 00:00:00 2001 From: sarven Date: Thu, 15 Jan 2009 20:24:41 +0000 Subject: [PATCH] HTML update to showSecondaryNav() --- lib/action.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/action.php b/lib/action.php index 4d2aa02e2c..52eee6d6ab 100644 --- a/lib/action.php +++ b/lib/action.php @@ -364,7 +364,10 @@ class Action extends HTMLOutputter // lawsuit function showSecondaryNav() { - $this->elementStart('ul', array('id' => 'nav_sub')); + $this->elementStart('dl', array('id' => 'site_nav_global_secondary')); + $this->element('dt', null, _('Secondary site navigation')); + $this->elementStart('dd', null); + $this->elementStart('ul', array('id' => 'nav')); $this->menuItem(common_local_url('doc', array('title' => 'help')), _('Help')); $this->menuItem(common_local_url('doc', array('title' => 'about')), @@ -378,6 +381,8 @@ class Action extends HTMLOutputter // lawsuit $this->menuItem(common_local_url('doc', array('title' => 'contact')), _('Contact')); $this->elementEnd('ul'); + $this->elementEnd('dd'); + $this->elementEnd('dl'); } function showLicenses()