Fix regression caused by r17122 in Cologne Blue search.
authorAryeh Gregor <simetrical@users.mediawiki.org>
Sat, 21 Oct 2006 23:05:16 +0000 (23:05 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Sat, 21 Oct 2006 23:05:16 +0000 (23:05 +0000)
skins/CologneBlue.php
skins/common/cologneblue.css

index 801f5ed..f304e37 100644 (file)
@@ -301,12 +301,12 @@ class SkinCologneBlue extends Skin {
 
                $search = $wgRequest->getText( 'search' );
                $action = $this->escapeSearchLink();
-               $s = "<form id=\"search\" method=\"get\" class=\"inline\" action=\"$action\">";
+               $s = "<form id=\"searchform\" method=\"get\" class=\"inline\" action=\"$action\">";
                if ( "" != $label ) { $s .= "{$label}: "; }
 
-               $s .= "<input type='text' id=\"searchtext\" name=\"searchtext\" size=\"14\" value=\""
+               $s .= "<input type='text' id=\"searchInput\" name=\"search\" size=\"14\" value=\""
                  . htmlspecialchars(substr($search,0,256)) . "\" />"
-                 . "<br /><input type='submit' id=\"go\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" /> <input type='submit' id=\"fulltext\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" /></form>";
+                 . "<br /><input type='submit' id=\"searchGoButton\" name=\"go\" value=\"" . htmlspecialchars( wfMsg( "searcharticle" ) ) . "\" /> <input type='submit' id=\"mw-searchButton\" name=\"fulltext\" value=\"" . htmlspecialchars( wfMsg( "search" ) ) . "\" /></form>";
 
                return $s;
        }
index b1a2991..1e27756 100644 (file)
@@ -95,4 +95,4 @@ a.stub, #quickbar a.stub { color:#772233; text-decoration:none; }
 a.new, #quickbar a.new { color: #CC2200; }
 h2, h3, h4, h5, h6 { margin-bottom: 0; }
 small { font-size: 75%; }
-input#searchtext { width: 106px; }
\ No newline at end of file
+input#searchInput { width: 106px; }
\ No newline at end of file