]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
changed to class nav from id
authorsarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 21:30:23 +0000 (21:30 +0000)
committersarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 21:30:23 +0000 (21:30 +0000)
lib/action.php

index a8b5e70b13e624f3fd9c4757dba766b4bc795317..dd84977f0d1ef67a5f58b5e3ae82da92152aeb57 100644 (file)
@@ -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')),