Tweak for r39314: don't add a line break before the "Go" button on the watchlist...
authorAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 22 Aug 2008 15:28:53 +0000 (15:28 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 22 Aug 2008 15:28:53 +0000 (15:28 +0000)
Reported by User:Garion96 on [[WP:VPT]]: <http://en.wikipedia.org/w/index.php?title=Wikipedia:Village_pump_(technical)&oldid=233532922#.22go.22_button_in_watchlist>

includes/specials/SpecialWatchlist.php

index 3e729f2..e67c4fd 100644 (file)
@@ -279,7 +279,7 @@ function wfSpecialWatchlist( $par ) {
        $form .= '<p>';
        $form .= Xml::label( wfMsg( 'namespace' ), 'namespace' ) . '&nbsp;';
        $form .= Xml::namespaceSelector( $nameSpace, '' ) . '&nbsp;';
-       $form .= Xml::checkLabel( wfMsg('invert'), 'invert', 'nsinvert', $invert ) . "<br />";
+       $form .= Xml::checkLabel( wfMsg('invert'), 'invert', 'nsinvert', $invert ) . '&nbsp;';
        $form .= Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . '</p>';
        $form .= Xml::hidden( 'days', $days );
        if( $hideMinor )