From: Aryeh Gregor Date: Fri, 22 Aug 2008 15:28:53 +0000 (+0000) Subject: Tweak for r39314: don't add a line break before the "Go" button on the watchlist... X-Git-Tag: 1.31.0-rc.0~45718 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=817fd9632c8765ac4c2e8c6243505380354c9feb;p=lhc%2Fweb%2Fwiklou.git Tweak for r39314: don't add a line break before the "Go" button on the watchlist. This used up yet more vertical space. It also visually dissociated the "Go" button from the namespace selector, making it look like it maybe applied to all the buttons above too, due to lack of a fieldset. On the other hand, this way looks a little awkward too. Maybe there's a better way? Reported by User:Garion96 on [[WP:VPT]]: --- diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index 3e729f27ae..e67c4fdd76 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -279,7 +279,7 @@ function wfSpecialWatchlist( $par ) { $form .= '

'; $form .= Xml::label( wfMsg( 'namespace' ), 'namespace' ) . ' '; $form .= Xml::namespaceSelector( $nameSpace, '' ) . ' '; - $form .= Xml::checkLabel( wfMsg('invert'), 'invert', 'nsinvert', $invert ) . "
"; + $form .= Xml::checkLabel( wfMsg('invert'), 'invert', 'nsinvert', $invert ) . ' '; $form .= Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . '

'; $form .= Xml::hidden( 'days', $days ); if( $hideMinor )