Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -676,6 +676,7 @@ |
677 | 677 | 'showingresultsnum', |
678 | 678 | 'nonefound', |
679 | 679 | 'powersearch', |
| 680 | + 'powersearch-legend', |
680 | 681 | 'powersearchtext', |
681 | 682 | 'searchdisabled', |
682 | 683 | 'googlesearch', |
Index: trunk/phase3/includes/SpecialSearch.php |
— | — | @@ -483,7 +483,7 @@ |
484 | 484 | |
485 | 485 | $out = Xml::openElement( 'form', array( 'id' => 'powersearch', 'method' => 'get', 'action' => $wgScript ) ) . |
486 | 486 | Xml::openElement( 'fieldset' ) . |
487 | | - Xml::element( 'legend', array( ), wfMsg( 'powersearch' ) ) . |
| 487 | + Xml::element( 'legend', array( ), wfMsg( 'powersearch-legend' ) ) . |
488 | 488 | Xml::hidden( 'title', 'Special:Search' ) . |
489 | 489 | wfMsgExt( 'powersearchtext', array( 'parse', 'replaceafter' ), |
490 | 490 | $namespaces, $redirect, $searchField, |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1226,6 +1226,7 @@ |
1227 | 1227 | 'showingresultsnum' => "Showing below {{PLURAL:$3|'''1''' result|'''$3''' results}} starting with #'''$2'''.", |
1228 | 1228 | 'nonefound' => "'''Note''': Unsuccessful searches are often caused by searching for common words like \"have\" and \"from\", which are not indexed, or by specifying more than one search term (only pages containing all of the search terms will appear in the result).", |
1229 | 1229 | 'powersearch' => 'Advanced search', |
| 1230 | +'powersearch-legend' => 'Advanced search', |
1230 | 1231 | 'powersearchtext' => 'Search in namespaces:<br />$1<br />$2 List redirects<br />Search for $3 $9', |
1231 | 1232 | 'searchdisabled' => '{{SITENAME}} search is disabled. You can search via Google in the meantime. Note that their indexes of {{SITENAME}} content may be out of date.', |
1232 | 1233 | 'googlesearch' => '<form method="get" action="http://www.google.com/search" id="googlesearch"> |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -96,6 +96,7 @@ |
97 | 97 | * (bug 7251) Sidebars generated by MediaWiki:Sidebar now have the class |
98 | 98 | 'generated-sidebar'. |
99 | 99 | * (bug 13265) Media handler is missing 'image/x-bmp' |
| 100 | +* (bug 13407) MediaWiki:Powersearch is used in two places |
100 | 101 | |
101 | 102 | === API changes in 1.13 === |
102 | 103 | |