From 817fd9632c8765ac4c2e8c6243505380354c9feb Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 22 Aug 2008 15:28:53 +0000 Subject: [PATCH] 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]]: --- includes/specials/SpecialWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) -- 2.20.1