From 815ec1fe00f4753cfce49fd6b78574e854efd350 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Wed, 7 Aug 2013 17:11:46 +0200 Subject: [PATCH] change new Quantity value in CartItem::addQuantity --- core/lib/Thelia/Model/CartItem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Model/CartItem.php b/core/lib/Thelia/Model/CartItem.php index cfe174989..01381f267 100644 --- a/core/lib/Thelia/Model/CartItem.php +++ b/core/lib/Thelia/Model/CartItem.php @@ -61,7 +61,7 @@ class CartItem extends BaseCartItem } } - $this->setQuantity($currentQuantity); + $this->setQuantity($newQuantity); return $this; }