From 4910a35ed8a9989edc870bcedf4a4e92c78a3ffc Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 29 Apr 2005 18:44:24 +0000 Subject: [PATCH] * Now passing msg:search as the third paramater to googlesearch --- includes/SpecialSearch.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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; } -- 2.20.1