* fixing regression from r42769 (component ordering & empty line)
[lhc/web/wiklou.git] / 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'];