فهرست منبع

Fix TODO in format_number()

Marien Fressinaud 11 سال پیش
والد
کامیت
ba832bef4d
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      lib/lib_rss.php

+ 1 - 1
lib/lib_rss.php

@@ -58,7 +58,7 @@ function checkUrl($url) {
 
 
 function format_number($n, $precision = 0) {
 function format_number($n, $precision = 0) {
 	// number_format does not seem to be Unicode-compatible
 	// number_format does not seem to be Unicode-compatible
-	return str_replace(' ', ' ',	//Espace insécable	//TODO: remplacer par une espace _fine_ insécable
+	return str_replace(' ', ' ',  //Espace fine insécable
 		number_format($n, $precision, '.', ' ')
 		number_format($n, $precision, '.', ' ')
 	);
 	);
 }
 }