// Fix PHP notice

This commit is contained in:
rGaillard
2011-11-23 20:47:50 +00:00
parent 7e25e5003d
commit fa356f6f80
+1 -1
View File
@@ -1579,7 +1579,7 @@ class CartCore extends ObjectModel
$delivery_option_list = $this->getDeliveryOptionList();
foreach ($delivery_option as $id_address => $key)
{
if (!isset($delivery_option_list[$id_address]))
if (!isset($delivery_option_list[$id_address]) || !isset($delivery_option_list[$id_address][$key]))
continue;
if ($useTax)
$total_shipping += $delivery_option_list[$id_address][$key]['total_price_with_tax'];