This website works better with JavaScript.
Home
Explore
Help
Sign In
Laclic
/
Souke
Watch
5
Star
0
Fork
1
Code
Issues
1
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Distributions : correctif problème affichage montant commande supérieur à 1000€
develop
Guillaume Bourgeois
1 week ago
parent
fdab7db575
commit
2feea328f7
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
+1
-1
common/helpers/Price.php
+ 1
- 1
common/helpers/Price.php
View File
@@ -77,7 +77,7 @@ class Price
public static function numberTwoDecimals($number, $decimals = 2)
{
return number_format((($number * 100)) / 100, $decimals, '.', '
');
return number_format((($number * 100)) / 100, $decimals, '.', '');
}
}
Write
Preview
Loading…
Cancel
Save