From: Robert Stojnić Date: Thu, 2 Jul 2009 10:02:35 +0000 (+0000) Subject: Should always close the form here since it apparently is not closed in advanced. X-Git-Tag: 1.31.0-rc.0~41135 X-Git-Url: http://git.cyclocoop.org/%27.%28%24current%20%3E%202?a=commitdiff_plain;h=7bf946c40c465a07659785e25c159e0bb338fec3;p=lhc%2Fweb%2Fwiklou.git Should always close the form here since it apparently is not closed in advanced. --- diff --git a/includes/specials/SpecialSearch.php b/includes/specials/SpecialSearch.php index 77cdb806e5..3f40bb5ad9 100644 --- a/includes/specials/SpecialSearch.php +++ b/includes/specials/SpecialSearch.php @@ -225,8 +225,8 @@ class SpecialSearch { $wgOut->addHTML( $this->formHeader($term, 0, 0)); if( $this->searchAdvanced ) { $wgOut->addHTML( $this->powerSearchBox( $term ) ); - } else - $wgOut->addHTML( '' ); + } + $wgOut->addHTML( '' ); // Empty query -- straight view of search form wfProfileOut( __METHOD__ ); return;