fixed currency format
This commit is contained in:
parent
12e86c7bcc
commit
71489cc733
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* currency.php
|
||||||
|
*
|
||||||
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
||||||
|
* @link http://www.guangdawangluo.com
|
||||||
|
* @author TL <mengwb@opencart.cn>
|
||||||
|
* @created 2022-07-28 17:21:38
|
||||||
|
* @modified 2022-07-28 17:21:38
|
||||||
|
*/
|
||||||
|
return [
|
||||||
|
'decimal_point' => '.',
|
||||||
|
'thousand_point' => ',',
|
||||||
|
];
|
||||||
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* currency.php
|
||||||
|
*
|
||||||
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
||||||
|
* @link http://www.guangdawangluo.com
|
||||||
|
* @author TL <mengwb@opencart.cn>
|
||||||
|
* @created 2022-07-28 17:21:38
|
||||||
|
* @modified 2022-07-28 17:21:38
|
||||||
|
*/
|
||||||
|
return [
|
||||||
|
'decimal_point' => '.',
|
||||||
|
'thousand_point' => ',',
|
||||||
|
];
|
||||||
Loading…
Reference in New Issue