From 34c435eddb61a78fdc1ef9052bdd49e792edd942 Mon Sep 17 00:00:00 2001 From: Danny B Date: Sun, 25 Jan 2009 00:19:01 +0000 Subject: [PATCH] * fixing regression from r42769 (component ordering & empty line) --- includes/specials/SpecialRecentchanges.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 31a1781fe1..c88b8269f7 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -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 ) ) . '
'; } - if( !wfEmptyMsg( 'rclegend', wfMsg('rclegend') ) ) { - $note .= wfMsgExt( 'rclegend', array('parseinline') ) . '
'; - } # Sort data for display and make sure it's unique after we've added user data. $wgRCLinkLimits[] = $options['limit']; -- 2.20.1