summaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-27 22:35:27 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-27 22:35:27 +0100
commitfdefc8c731c05d8a7db626e55fe41d7211488f98 (patch)
treea719ac804aa694dfeb785299ade2ec1d02434958 /lib/lib_rss.php
parent6a43bd85df4aa47733fe57e1a859d74cd30cbe25 (diff)
Formatage des nombres
https://github.com/marienfressinaud/FreshRSS/pull/398
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php2
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(' ', '&#8239;', //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
}