Index: branches/5.2.x/units/shipping_costs/shipping_costs_event_handler.php =================================================================== diff -u -N -r15149 -r15453 --- branches/5.2.x/units/shipping_costs/shipping_costs_event_handler.php (.../shipping_costs_event_handler.php) (revision 15149) +++ branches/5.2.x/units/shipping_costs/shipping_costs_event_handler.php (.../shipping_costs_event_handler.php) (revision 15453) @@ -1,6 +1,6 @@ GetDBField('Type') == 1 && $lang_object->GetDBField('UnitSystem') == 2 ) { $object->SetDBField('PerUnit', $object->GetDBField('PerUnit') * kUtil::POUND_TO_KG); - $object->Update(null, true); + $object->Update(null, null, true); } } @@ -293,7 +293,7 @@ // by weight and US/UK system - we need to store recalculated price per Kg cause shipping calculation is done per Kg! if ( $shipping_obj->GetDBField('Type') == 1 && $lang_object->GetDBField('UnitSystem') == 2 ) { $object->SetDBField('PerUnit', $object->GetDBField('PerUnit') / kUtil::POUND_TO_KG); - $object->Update(null, true); + $object->Update(null, null, true); } } } \ No newline at end of file