From: Antoine Musso Date: Sun, 14 Aug 2005 10:59:09 +0000 (+0000) Subject: bug: percent shown twice with wiki output X-Git-Tag: 1.6.0~1984 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=f5871efffe7ddba0b103fd49333fad772e34fec7;p=lhc%2Fweb%2Fwiklou.git bug: percent shown twice with wiki output --- diff --git a/maintenance/transstat.php b/maintenance/transstat.php index 39c54f1463..8233aeefe1 100644 --- a/maintenance/transstat.php +++ b/maintenance/transstat.php @@ -81,7 +81,7 @@ class wikiStatsOutput extends statsOutput { $color = $red.$green.$blue; $percent = statsOutput::formatPercent($subset, $total, $revert, $accuracy); - return 'bgcolor="#'.$color.'" | '.$percent.'%'; + return 'bgcolor="#'.$color.'" | '.$percent; } }