// migrate orders does not use constant

This commit is contained in:
mMarinetti
2012-01-25 18:15:55 +00:00
parent 1c561612ea
commit 7b9390ff54
+2 -2
View File
@@ -148,9 +148,9 @@ function mo_ps_round($val){
switch ($ps_price_round_mode)
{
case PS_ROUND_UP:
case 0:
return ceil($val * 100)/100;
case PS_ROUND_DOWN:
case 1:
return floor($val * 100)/100;
default:
return round($val, 2);