wcSettings refactor: fix camel case for currencies in PHP (https://github.com/woocommerce/woocommerce-admin/pull/2975)
This commit is contained in:
parent
30a31c8fdf
commit
fa8311da07
|
@ -20,8 +20,8 @@ function wc_admin_number_format( $number ) {
|
|||
return number_format(
|
||||
$number,
|
||||
0,
|
||||
$currency_settings['decimal_separator'],
|
||||
$currency_settings['thousand_separator']
|
||||
$currency_settings['decimalSeparator'],
|
||||
$currency_settings['thousandSeparator']
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue