Index: trunk/phase3/includes/specials/SpecialLinkSearch.php |
— | — | @@ -171,7 +171,7 @@ |
172 | 172 | /** |
173 | 173 | * Override to check query validity. |
174 | 174 | */ |
175 | | - function doQuery( $offset, $limit, $shownavigation=true ) { |
| 175 | + function doQuery( $offset, $limit ) { |
176 | 176 | global $wgOut; |
177 | 177 | list( $this->mMungedQuery, ) = LinkSearchPage::mungeQuery( $this->mQuery, $this->mProt ); |
178 | 178 | if( $this->mMungedQuery === false ) { |
— | — | @@ -180,7 +180,7 @@ |
181 | 181 | // For debugging |
182 | 182 | // Generates invalid xhtml with patterns that contain -- |
183 | 183 | //$wgOut->addHTML( "\n<!-- " . htmlspecialchars( $this->mMungedQuery ) . " -->\n" ); |
184 | | - parent::doQuery( $offset, $limit, $shownavigation ); |
| 184 | + parent::doQuery( $offset, $limit ); |
185 | 185 | } |
186 | 186 | } |
187 | 187 | |