Index: includes/specials/SpecialRecentchanges.php =================================================================== --- includes/specials/SpecialRecentchanges.php (revision 40119) +++ includes/specials/SpecialRecentchanges.php (working copy) @@ -454,7 +454,7 @@ } wfRunHooks( 'SpecialRecentChangesPanel', array( &$extraOpts, $opts ) ); - $extraOpts['submit'] = Xml::submitbutton( wfMsg('allpagessubmit') ); + return $extraOpts; } @@ -487,7 +487,8 @@ $nsSelect = HTMLnamespaceselector( $opts['namespace'], '' ); $nsLabel = Xml::label( wfMsg('namespace'), 'namespace' ); $invert = Xml::checkLabel( wfMsg('invert'), 'invert', 'nsinvert', $opts['invert'] ); - return array( $nsLabel, "$nsSelect $invert" ); + $submit = Xml::submitbutton( wfMsg('allpagessubmit') ); + return array( $nsLabel, "$nsSelect $invert $submit" ); } /** Index: RELEASE-NOTES =================================================================== --- RELEASE-NOTES (revision 40119) +++ RELEASE-NOTES (working copy) @@ -100,6 +100,7 @@ backwards incompatibility with upload extensions. * BMP images are now displayed as PNG * (bug 13471) Added NUMBERINGROUP magic word +* (bug 15172) 'Go' button of Special:Watchlist and Special:Recentchanges now on the same line as the namespace selector === Bug fixes in 1.14 ===