summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 20:24:41 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 20:24:41 +0000
commitc08eadc774c2231e6b434ba067e2d7115404606f (patch)
tree9df729e7b1198caf8522f894567c0d6f0f3dedf5 /lib
parent4f56d984154e283db8030a19441318d927fa82bc (diff)
HTML update to showSecondaryNav()
Diffstat (limited to 'lib')
-rw-r--r--lib/action.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/action.php b/lib/action.php
index 4d2aa02e2..52eee6d6a 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()