From 0d65bf62b2043848afe34e4b64142c1f991615a4 Mon Sep 17 00:00:00 2001 From: aFolletete Date: Tue, 6 Dec 2011 08:54:07 +0000 Subject: [PATCH] [-] Classes : fixed notice error on Cart class git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10962 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 110411770..8096bdfde 100644 --- a/classes/Cart.php +++ b/classes/Cart.php @@ -787,7 +787,7 @@ class CartCore extends ObjectModel { if ($operator == 'up') { - $sql = 'SELECT stock.out_of_stock, IFNULL(stock.quantity, 0) + $sql = 'SELECT stock.out_of_stock, IFNULL(stock.quantity, 0) as quantity FROM '._DB_PREFIX_.'product p '.Product::sqlStock('p', $id_product_attribute, true, $shop).' WHERE p.id_product = '.$id_product;