From: Niklas Laxström Date: Fri, 5 Jan 2007 23:18:37 +0000 (+0000) Subject: * nbytes uses {{plural}}, support it X-Git-Tag: 1.31.0-rc.0~54649 X-Git-Url: http://git.cyclocoop.org/%22.%24redirect_annul.%22?a=commitdiff_plain;h=febd48e58849786c6b73ec89d7ceb10c64992c5f;p=lhc%2Fweb%2Fwiklou.git * nbytes uses {{plural}}, support it --- diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 01a95f2918..780764b74f 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -581,7 +581,8 @@ class RecentChange } $szdiff = $new - $old; - $formatedSize = wfMsg( 'nbytes', $wgLang->formatNum($szdiff) ); + $formatedSize = wfMsgExt( 'nbytes', array( 'parsemag', 'escape'), + $wgLang->formatNum($szdiff) ); if( $szdiff < $wgRCChangedSizeThreshold ) { return '(' . $formatedSize . ')';