| Index: trunk/phase3/includes/specials/SpecialContributions.php |
| — | — | @@ -337,7 +337,7 @@ |
| 338 | 338 | * @return String: HTML fragment |
| 339 | 339 | */ |
| 340 | 340 | protected function getForm() { |
| 341 | | - global $wgScript, $wgMiserMode; |
| | 341 | + global $wgScript; |
| 342 | 342 | |
| 343 | 343 | $this->opts['title'] = $this->getTitle()->getPrefixedText(); |
| 344 | 344 | if( !isset( $this->opts['target'] ) ) { |
| — | — | @@ -387,12 +387,6 @@ |
| 388 | 388 | |
| 389 | 389 | $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagFilter'] ); |
| 390 | 390 | |
| 391 | | - $fNS = ( $wgMiserMode ) ? '' : |
| 392 | | - Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ), |
| 393 | | - Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' . |
| 394 | | - Xml::namespaceSelector( $this->opts['namespace'], '' ) |
| 395 | | - ); |
| 396 | | - |
| 397 | 391 | $f .= Xml::fieldset( wfMsg( 'sp-contributions-search' ) ) . |
| 398 | 392 | Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parsemag' ) ), |
| 399 | 393 | 'contribs', 'newbie' , 'newbie', $this->opts['contribs'] == 'newbie' ) . '<br />' . |
| — | — | @@ -402,7 +396,10 @@ |
| 403 | 397 | 'size' => '20', |
| 404 | 398 | 'required' => '' |
| 405 | 399 | ) + ( $this->opts['target'] ? array() : array( 'autofocus' ) ) ) . ' '. |
| 406 | | - $fNS. |
| | 400 | + Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ), |
| | 401 | + Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' . |
| | 402 | + Xml::namespaceSelector( $this->opts['namespace'], '' ) |
| | 403 | + ) . |
| 407 | 404 | Xml::checkLabel( wfMsg( 'history-show-deleted' ), |
| 408 | 405 | 'deletedOnly', 'mw-show-deleted-only', $this->opts['deletedOnly'] ) . '<br />' . |
| 409 | 406 | Xml::tags( 'p', null, Xml::checkLabel( wfMsg( 'sp-contributions-toponly' ), |