* fixing regression from r42769 (component ordering & empty line)
authorDanny B <danny_b@users.mediawiki.org>
Sun, 25 Jan 2009 00:19:01 +0000 (00:19 +0000)
committerDanny B <danny_b@users.mediawiki.org>
Sun, 25 Jan 2009 00:19:01 +0000 (00:19 +0000)
includes/specials/SpecialRecentchanges.php

index 31a1781..c88b826 100644 (file)
@@ -588,14 +588,14 @@ class SpecialRecentChanges extends SpecialPage {
                $options = $nondefaults + $defaults;
 
                $note = '';
+               if( !wfEmptyMsg( 'rclegend', wfMsg('rclegend') ) ) {
+                       $note .= wfMsgExt( 'rclegend', array('parseinline') );
+               }
                if( $options['from'] ) {
                        $note .= wfMsgExt( 'rcnotefrom', array( 'parseinline' ),
                                $wgLang->formatNum( $options['limit'] ),
                                $wgLang->timeanddate( $options['from'], true ) ) . '<br />';
                }
-               if( !wfEmptyMsg( 'rclegend', wfMsg('rclegend') ) ) {
-                       $note .= wfMsgExt( 'rclegend', array('parseinline') ) . '<br />';
-               }
 
                # Sort data for display and make sure it's unique after we've added user data.
                $wgRCLinkLimits[] = $options['limit'];