[*] LO : set correct currency format for CHF

This commit is contained in:
djfm
2013-10-11 07:14:30 +00:00
parent dc1632a8b0
commit bb96c8754f
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -526,9 +526,9 @@ class ToolsCore
case 4:
$ret = number_format($price, $c_decimals, '.', ',').$blank.$c_char;
break;
/* 0'000.00 X Added for the switzerland currency */
/* X 0'000.00 Added for the switzerland currency */
case 5:
$ret = number_format($price, $c_decimals, '.', "'").$blank.$c_char;
$ret = $c_char.$blank.number_format($price, $c_decimals, '.', "'");
break;
}
if ($is_negative)