// 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
This commit is contained in:
rMalie
2012-01-12 14:55:50 +00:00
parent 87ad43efb9
commit ec8c716292
+4 -1
View File
@@ -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()