summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-15 21:30:23 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-15 21:30:23 +0000
commit60fa833908da5476e7c2e971fb60c85d7fa134e8 (patch)
tree8b3603c741966a6c48a38d737a81dff98c7d5b5a
parente6211290422b8d42da11c4ee2e5530d5ef63a72e (diff)
changed to class nav from id
-rw-r--r--lib/action.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/action.php b/lib/action.php
index a8b5e70b1..dd84977f0 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -237,7 +237,7 @@ class Action extends HTMLOutputter // lawsuit
$this->element('dt', null, _('Primary site navigation'));
$this->elementStart('dd');
$user = common_current_user();
- $this->elementStart('ul', array('id' => 'nav'));
+ $this->elementStart('ul', array('class' => 'nav'));
if ($user) {
$this->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
_('Home'));
@@ -370,7 +370,7 @@ class Action extends HTMLOutputter // lawsuit
$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->elementStart('ul', array('class' => 'nav'));
$this->menuItem(common_local_url('doc', array('title' => 'help')),
_('Help'));
$this->menuItem(common_local_url('doc', array('title' => 'about')),