* (bug 13924) Fix bad HTML on power search form
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 1 May 2008 22:31:20 +0000 (22:31 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 1 May 2008 22:31:20 +0000 (22:31 +0000)
RELEASE-NOTES
includes/SpecialSearch.php

index 4ec765e..6e94c9e 100644 (file)
@@ -235,7 +235,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 13913) Special:Whatlinkshere now has correct HTML markup
 * (bug 13905) Blacklist Mac IE from HttpOnly cookies; it eats them sometimes
 * (bug 13922) Fix bad HTML on empty Special:Prefixindex and Special:Allpages
-
+* (bug 13924) Fix bad HTML on power search form
 
 === API changes in 1.13 ===
 
index fa5f38c..25aba1c 100644 (file)
@@ -586,7 +586,7 @@ class SpecialSearch {
                                $name = wfMsg( 'blanknamespace' );
                        }
                        $namespaces .= Xml::openElement( 'span', array( 'style' => 'white-space: nowrap' ) ) .
-                                       Xml::checkLabel( $name, "ns{$ns}", $name, in_array( $ns, $this->namespaces ) ) .
+                                       Xml::checkLabel( $name, "ns{$ns}", "mw-search-ns{$ns}", in_array( $ns, $this->namespaces ) ) .
                                        Xml::closeElement( 'span' ) . "\n";
                }