X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=opensearch_desc.php;h=95f028ac73ed30cedb3c945b7d12db907c11581d;hb=fb0966908bf2ea0bafe88dfda0ad6660c2cbe107;hp=3dbf872079dca47bbc16ae6a05540dbf60f9f78f;hpb=add8c926ac9256effa2a346b3e1abaeda120ed07;p=lhc%2Fweb%2Fwiklou.git diff --git a/opensearch_desc.php b/opensearch_desc.php index 3dbf872079..95f028ac73 100644 --- a/opensearch_desc.php +++ b/opensearch_desc.php @@ -1,10 +1,26 @@ getVal( 'ctype' ) == 'application/xml' ) { // Makes testing tweaks about a billion times easier @@ -38,7 +54,7 @@ print Xml::openElement( 'OpenSearchDescription', // // Behavior seems about the same between Firefox and IE 7/8 here. // 'Description' doesn't appear to be used by either. -$fullName = wfMsgForContent( 'opensearch-desc' ); +$fullName = wfMessage( 'opensearch-desc' )->inContentLanguage()->text(); print Xml::element( 'ShortName', null, $fullName ); print Xml::element( 'Description', null, $fullName ); @@ -49,7 +65,7 @@ print Xml::element( 'Image', 'height' => 16, 'width' => 16, 'type' => 'image/x-icon' ), - wfExpandUrl( $wgFavicon ) ); + wfExpandUrl( $wgFavicon , PROTO_CURRENT ) ); $urls = array(); @@ -60,7 +76,7 @@ $searchPage = SpecialPage::getTitleFor( 'Search' ); $urls[] = array( 'type' => 'text/html', 'method' => 'get', - 'template' => $searchPage->getFullURL( 'search={searchTerms}' ) ); + 'template' => $searchPage->getCanonicalURL( 'search={searchTerms}' ) ); if( $wgEnableAPI ) { // JSON interface for search suggestions. @@ -84,6 +100,6 @@ foreach( $urls as $attribs ) { // sends you to the domain root if you hit "enter" with an empty // search box. print Xml::element( 'moz:SearchForm', null, - $searchPage->getFullUrl() ); + $searchPage->getCanonicalURL() ); print '';