From: Samantha Doherty <sammy@status.net>
Date: Fri, 26 Aug 2011 02:29:11 +0000 (-0400)
Subject: Move header search before nav in the HTML; give it a unique ID.
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8c84637612a4ecb8efb624a98159f6c955dd5894;p=quix0rs-gnu-social.git

Move header search before nav in the HTML; give it a unique ID.
---

diff --git a/lib/action.php b/lib/action.php
index 251b1dadac..38685f928a 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -580,8 +580,6 @@ class Action extends HTMLOutputter // lawsuit
     function showPrimaryNav()
     {
         $this->elementStart('div', array('id' => 'site_nav_global_primary'));
-        $pn = new PrimaryNav($this);
-        $pn->show();
 
         $user = common_current_user();
 
@@ -590,6 +588,8 @@ class Action extends HTMLOutputter // lawsuit
             $form->show();
         }
 
+        $pn = new PrimaryNav($this);
+        $pn->show();
         $this->elementEnd('div');
     }
 
diff --git a/lib/searchform.php b/lib/searchform.php
index b58d7af809..4c63264006 100644
--- a/lib/searchform.php
+++ b/lib/searchform.php
@@ -89,7 +89,7 @@ class SearchForm extends Form
 
     function id()
     {
-        return 'search';
+        return 'header-search';
     }
 
     /**