Index: trunk/phase3/includes/specials/SpecialContributions.php |
— | — | @@ -317,7 +317,7 @@ |
318 | 318 | * @return String: HTML fragment |
319 | 319 | */ |
320 | 320 | protected function getForm() { |
321 | | - global $wgScript; |
| 321 | + global $wgScript, $wgMiserMode; |
322 | 322 | |
323 | 323 | $this->opts['title'] = $this->getTitle()->getPrefixedText(); |
324 | 324 | if( !isset( $this->opts['target'] ) ) { |
— | — | @@ -367,6 +367,12 @@ |
368 | 368 | |
369 | 369 | $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagFilter'] ); |
370 | 370 | |
| 371 | + $fNS = ( $wgMiserMode ) ? '' : |
| 372 | + Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ), |
| 373 | + Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' . |
| 374 | + Xml::namespaceSelector( $this->opts['namespace'], '' ) |
| 375 | + ); |
| 376 | + |
371 | 377 | $f .= Xml::fieldset( wfMsg( 'sp-contributions-search' ) ) . |
372 | 378 | Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parsemag' ) ), |
373 | 379 | 'contribs', 'newbie' , 'newbie', $this->opts['contribs'] == 'newbie' ) . '<br />' . |
— | — | @@ -376,10 +382,7 @@ |
377 | 383 | 'size' => '20', |
378 | 384 | 'required' => '' |
379 | 385 | ) + ( $this->opts['target'] ? array() : array( 'autofocus' ) ) ) . ' '. |
380 | | - Html::rawElement( 'span', array( 'style' => 'white-space: nowrap' ), |
381 | | - Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' . |
382 | | - Xml::namespaceSelector( $this->opts['namespace'], '' ) |
383 | | - ) . |
| 386 | + $fNS. |
384 | 387 | Xml::checkLabel( wfMsg( 'history-show-deleted' ), |
385 | 388 | 'deletedOnly', 'mw-show-deleted-only', $this->opts['deletedOnly'] ) . '<br />' . |
386 | 389 | Xml::tags( 'p', null, Xml::checkLabel( wfMsg( 'sp-contributions-toponly' ), |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -2992,8 +2992,6 @@ |
2993 | 2993 | 'sp-contributions-explain' => '', # only translate this message to other languages if you have to change it |
2994 | 2994 | 'sp-contributions-footer' => '-', # do not translate or duplicate this message to other languages |
2995 | 2995 | 'sp-contributions-footer-anon' => '-', # do not translate or duplicate this message to other languages |
2996 | | -'sp-contributions-filtered' => 'contributions page filtered for namespace or RevisionDeleted edits', |
2997 | | -'sp-contributions-unfiltered' => 'contributions page unfiltered', |
2998 | 2996 | |
2999 | 2997 | # What links here |
3000 | 2998 | 'whatlinkshere' => 'What links here', |