// Fixed warning when calculating the order total of an empty cart

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15575 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
dMetzger
2012-05-21 18:56:19 +00:00
parent 231a924e31
commit f1b7e0b834
+4 -2
View File
@@ -1443,8 +1443,10 @@ class CartCore extends ObjectModel
$cart_rules[] = $tmp_cart_rule;
}
}
$id_address_delivery = (is_null($products) ? $this->id_address_delivery : $products[0]['id_address_delivery']);
$id_address_delivery = 0;
if (isset($products[0]))
$id_address_delivery = (is_null($products) ? $this->id_address_delivery : $products[0]['id_address_delivery']);
$package = array('id_carrier' => $id_carrier, 'id_address' => $id_address_delivery, 'products' => $products);
// Then, calculate the contextual value for each one