Fix incorrect message in CologneBlue full text button.
authorDaniel Friesen <daniel@nadir-seen-fire.com>
Mon, 15 Oct 2012 01:54:46 +0000 (18:54 -0700)
committerDaniel Friesen <daniel@nadir-seen-fire.com>
Mon, 15 Oct 2012 01:54:46 +0000 (18:54 -0700)
'searchbutton' is the correct message, not 'search'.

Change-Id: I81cd3fd86ac09fce49021f34eba7cc4f055167b6

skins/CologneBlue.php

index 473ee2b..17487f4 100644 (file)
@@ -669,7 +669,7 @@ class CologneBlueTemplate extends BaseTemplate {
                        . "<input type='submit' class=\"searchButton\" name=\"go\" value=\"" . wfMessage( 'searcharticle' )->escaped() . "\" />";
 
                if( $wgUseTwoButtonsSearchForm ) {
-                       $s .= " <input type='submit' class=\"searchButton\" name=\"fulltext\" value=\"" . wfMessage( 'search' )->escaped() . "\" />\n";
+                       $s .= " <input type='submit' class=\"searchButton\" name=\"fulltext\" value=\"" . wfMessage( 'searchbutton' )->escaped() . "\" />\n";
                } else {
                        $s .= '<div><a href="' . $action . '" rel="search">' . wfMessage( 'powersearch-legend' )->escaped() . "</a></div>\n";
                }