Revert r49935 (decode character entities in namespace names) due to lack of justifica...
authorTim Starling <tstarling@users.mediawiki.org>
Thu, 4 Jun 2009 06:02:00 +0000 (06:02 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Thu, 4 Jun 2009 06:02:00 +0000 (06:02 +0000)
RELEASE-NOTES
includes/specials/SpecialSearch.php

index aa9a9ca..9b96db7 100644 (file)
@@ -139,7 +139,6 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   for it.
 * (bug 17020) Adding fallback encodings for Traditional and Simplified Chinese
   languages while the the text is typed as URLs.
-* (bug 18535) Search tab tool-tops are corrupted
 * (bug 17614) Prev / Next links not need on ImagePage file history if less than
   limit
 * (bug 18207) Strange spacing before [[irc:...]] links
index a456efe..a0e7e78 100644 (file)
@@ -700,7 +700,6 @@ class SpecialSearch {
                $m = wfMsg( 'searchprofile-articles' );
                $tt = wfMsg( 'searchprofile-articles-tooltip',
                        $wgLang->commaList( SearchEngine::namespacesAsText( SearchEngine::defaultNamespaces() ) ) );
-               $tt = Sanitizer::decodeCharReferences( $tt ); // need to allow entities
                if( $this->active == 'default' ) {
                        $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
                } else {
@@ -720,7 +719,6 @@ class SpecialSearch {
                $m = wfMsg( 'searchprofile-project' );
                $tt = wfMsg( 'searchprofile-project-tooltip',
                        $wgLang->commaList( SearchEngine::namespacesAsText( SearchEngine::helpNamespaces() ) ) );
-               $tt = Sanitizer::decodeCharReferences( $tt ); // need to allow entities
                if( $this->active == 'help' ) {
                        $out .= Xml::element( 'strong', array( 'title'=>$tt ), $m );
                } else {