Index: trunk/phase3/includes/SpecialContributions.php |
— | — | @@ -426,13 +426,20 @@ |
427 | 427 | Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parseinline' ) ), 'contribs' , 'newbie' , 'newbie', $options['contribs'] == 'newbie' ? true : false ) . '<br />' . |
428 | 428 | Xml::radioLabel( wfMsgExt( 'sp-contributions-username', array( 'parseinline' ) ), 'contribs' , 'user', 'user', $options['contribs'] == 'user' ? true : false ) . ' ' . |
429 | 429 | Xml::input( 'target', 20, $options['target']) . ' '. |
430 | | - Xml::label( wfMsg( 'namespace' ), 'namespace' ) . |
| 430 | + '<span style="white-space: nowrap">' . |
| 431 | + Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' ' . |
431 | 432 | Xml::namespaceSelector( $options['namespace'], '' ) . |
| 433 | + '</span>' . |
432 | 434 | Xml::openElement( 'p' ) . |
| 435 | + '<span style="white-space: nowrap">' . |
433 | 436 | Xml::label( wfMsg( 'year' ), 'year' ) . ' '. |
434 | | - Xml::input( 'year', 4, $options['year'], array('id' => 'year', 'maxlength' => 4) ) . ' '. |
| 437 | + Xml::input( 'year', 4, $options['year'], array('id' => 'year', 'maxlength' => 4) ) . |
| 438 | + '</span>' . |
| 439 | + ' '. |
| 440 | + '<span style="white-space: nowrap">' . |
435 | 441 | Xml::label( wfMsg( 'month' ), 'month' ) . ' '. |
436 | 442 | Xml::monthSelector( $options['month'], -1 ) . ' '. |
| 443 | + '</span>' . |
437 | 444 | Xml::submitButton( wfMsg( 'sp-contributions-submit' ) ) . |
438 | 445 | Xml::closeElement( 'p' ); |
439 | 446 | |