From ec8c716292fc127b8c953fc29c457d0fd9aec973 Mon Sep 17 00:00:00 2001 From: rMalie Date: Thu, 12 Jan 2012 14:55:50 +0000 Subject: [PATCH] // Fix retrocompatibility with themes 1.4 -> 1.5 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12393 b9a71923-0436-4b27-9f14-aed3839534dd --- classes/Cart.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/classes/Cart.php b/classes/Cart.php index 550790196..8cb293085 100644 --- a/classes/Cart.php +++ b/classes/Cart.php @@ -2497,7 +2497,10 @@ class CartCore extends ObjectModel 'total_price' => $this->getOrderTotal(), 'total_tax' => $total_tax, 'total_price_without_tax' => $this->getOrderTotal(false), - 'is_multi_address_delivery' => $this->isMultiAddressDelivery()); + 'is_multi_address_delivery' => $this->isMultiAddressDelivery(), + 'free_ship' => 0, + 'carrier' => new Carrier($this->id_carrier, $id_lang), + ); } public function checkQuantities()