// Merge -> revision 8059
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8062 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -1536,7 +1536,7 @@ class FedexCarrier extends CarrierModule
|
||||
'width' => ($product['width'] ? $product['width'] : 1),
|
||||
'height' => ($product['height'] ? $product['height'] : 1),
|
||||
'depth' => ($product['depth'] ? $product['depth'] : 1),
|
||||
'weight' => ($product['weight'] ? $product['weight'] : 1),
|
||||
'weight' => ($product['weight'] > 0.1 ? $product['weight'] : 0.1),
|
||||
'pickup_type' => (isset($config['pickup_type_code']) ? $config['pickup_type_code'] : Configuration::get('FEDEX_CARRIER_PICKUP_TYPE')),
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user