diff options
| author | 2014-01-27 22:35:27 +0100 | |
|---|---|---|
| committer | 2014-01-27 22:35:27 +0100 | |
| commit | fdefc8c731c05d8a7db626e55fe41d7211488f98 (patch) | |
| tree | a719ac804aa694dfeb785299ade2ec1d02434958 /lib/lib_rss.php | |
| parent | 6a43bd85df4aa47733fe57e1a859d74cd30cbe25 (diff) | |
Formatage des nombres
https://github.com/marienfressinaud/FreshRSS/pull/398
Diffstat (limited to 'lib/lib_rss.php')
| -rw-r--r-- | lib/lib_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php index b953f96ce..1bb117ab6 100644 --- a/lib/lib_rss.php +++ b/lib/lib_rss.php @@ -63,7 +63,7 @@ function small_hash ($txt) { } function formatNumber($n, $precision = 0) { - return str_replace(' ', ' ', //Espace fine insécable + return str_replace(' ', ' ', //Espace insécable //TODO: remplacer par une espace _fine_ insécable number_format($n, $precision, '.', ' ')); //number_format does not seem to be Unicode-compatible } |
