From 0488fe9b5c5abd2002531a3fab96b50b84286e19 Mon Sep 17 00:00:00 2001 From: aterekhov Date: Tue, 17 Nov 2009 21:19:10 +0000 Subject: [PATCH] Currence format   #14 git-svn-id: svn+ssh://code.netmonsters.ru/svn/majestic/trunk@109 4cb57b5f-5bbd-dd11-951b-001d605cbbc5 --- classes/Format.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Format.class.php b/classes/Format.class.php index e028b1a..3de49f8 100644 --- a/classes/Format.class.php +++ b/classes/Format.class.php @@ -51,7 +51,7 @@ class Format static public function int2money($int = 0, $currency = false, $show_decimals = true) { $money = number_format($int/100, ($show_decimals) ? self::$frac_digits : 0, self::$decimal_point, ' '); - return $money . (($currency) ? ' ' . self::$currency_symbol : ''); + return str_replace(' ', html_entity_decode(' ', ENT_COMPAT, 'UTF-8'), $money) . (($currency) ? ' ' . self::$currency_symbol : ''); } static public function money2int($money)