From b8cf0fe3e41b46d7be2bca409d13cd9ec55aa8c9 Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Mon, 9 Jul 2012 08:07:46 +0000 Subject: [PATCH] [-] FO : #PSCFV-3100 - With OPC shpping cost are not refreshed correctly git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16270 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Cart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Cart.php b/classes/Cart.php index 383defba6..7fbb2889d 100644 --- a/classes/Cart.php +++ b/classes/Cart.php @@ -2310,7 +2310,7 @@ class CartCore extends ObjectModel public function getTotalShippingCost($delivery_option = null, $use_tax = true, Country $default_country = null) { if (is_null($delivery_option)) - $delivery_option = $this->getDeliveryOption($default_country); + $delivery_option = $this->getDeliveryOption($default_country, false, false); $total_shipping = 0; $delivery_option_list = $this->getDeliveryOptionList();