From 0a08ef6d555ec41a04fba86b43344b989927513a Mon Sep 17 00:00:00 2001 From: ejikharev Date: Mon, 2 Feb 2009 10:02:07 +0000 Subject: [PATCH] add spacer in prise git-svn-id: svn+ssh://code.netmonsters.ru/svn/majestic/trunk@54 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 86078e3..da32666 100644 --- a/classes/Format.class.php +++ b/classes/Format.class.php @@ -39,7 +39,7 @@ class Format static public function int2money($int = 0, $currency = false) { if(!isset(self::$cache_money[$int])){ - self::$cache_money[$int] = number_format($int/100, self::$frac_digits, self::$decimal_point, ''); + self::$cache_money[$int] = number_format($int/100, self::$frac_digits, self::$decimal_point, ' '); } return self::$cache_money[$int] . (($currency) ? ' '.self::$currency_symbol : ''); }