From: Ævar Arnfjörð Bjarmason Date: Fri, 29 Apr 2005 18:44:24 +0000 (+0000) Subject: * Now passing msg:search as the third paramater to googlesearch X-Git-Tag: 1.5.0alpha1~73 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=4910a35ed8a9989edc870bcedf4a4e92c78a3ffc;p=lhc%2Fweb%2Fwiklou.git * Now passing msg:search as the third paramater to googlesearch --- diff --git a/includes/SpecialSearch.php b/includes/SpecialSearch.php index 70341e8670..2145c0bab2 100644 --- a/includes/SpecialSearch.php +++ b/includes/SpecialSearch.php @@ -151,9 +151,13 @@ class SpecialSearch { } global $wgInputEncoding; $wgOut->addHTML( wfMsg( 'searchdisabled' ) ); - $wgOut->addHTML( wfMsg( 'googlesearch', - htmlspecialchars( $term ), - htmlspecialchars( $wgInputEncoding ) ) ); + $wgOut->addHTML( + wfMsg( 'googlesearch', + htmlspecialchars( $term ), + htmlspecialchars( $wgInputEncoding ), + htmlspecialchars( wfMsg( 'search' ) ) + ) + ); wfProfileOut( $fname ); return; }