From 9db83c84236ac15e30da9261be91252aeb4428f3 Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Fri, 30 Mar 2012 09:09:38 +0000 Subject: [PATCH] // Change commentary "the the cart" for "the cart" --- classes/Cart.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Cart.php b/classes/Cart.php index a82f79c29..11cc353e7 100644 --- a/classes/Cart.php +++ b/classes/Cart.php @@ -254,7 +254,7 @@ class CartCore extends ObjectModel if (Configuration::get('PS_TAX_ADDRESS_TYPE') == 'id_address_invoice') $address_id = (int)$cart->id_address_invoice; else - $address_id = (int)$product->id_address_delivery; // Get delivery address of the product from the the cart + $address_id = (int)$product->id_address_delivery; // Get delivery address of the product from the cart if (!Address::addressExists($address_id)) $address_id = null; @@ -1292,7 +1292,7 @@ class CartCore extends ObjectModel if (Configuration::get('PS_TAX_ADDRESS_TYPE') == 'id_address_invoice') $address_id = (int)$this->id_address_invoice; else - $address_id = (int)$product['id_address_delivery']; // Get delivery address of the product from the the cart + $address_id = (int)$product['id_address_delivery']; // Get delivery address of the product from the cart if (!Address::addressExists($address_id)) $address_id = null;