From: Leon Weber Date: Sat, 16 Dec 2006 18:56:40 +0000 (+0000) Subject: Added missing closing bracket when the diff is below the threshold. X-Git-Tag: 1.31.0-rc.0~54884 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/ajouter.php?a=commitdiff_plain;h=985ca55b8adda8c065ec43a93aeed0ccadb0531c;p=lhc%2Fweb%2Fwiklou.git Added missing closing bracket when the diff is below the threshold. --- diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 465d1f2c15..af555431df 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -556,7 +556,7 @@ class RecentChange $szdiff = $new - $old; if( $szdiff < $wgRCChangedSizeThreshold ) { - return '(' . $wgLang->formatNum( $szdiff ) . ''; + return '(' . $wgLang->formatNum( $szdiff ) . ')'; } elseif( $szdiff === 0 ) { return '(' . $wgLang->formatNum( $szdiff ) . ')'; } elseif( $szdiff > 0 ) {