[*] LO : set correct currency format for CHF
This commit is contained in:
+2
-2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user