From f236fe649489479b6f17613b771a423667d42cb9 Mon Sep 17 00:00:00 2001 From: aNiassy Date: Thu, 22 Dec 2011 20:58:20 +0000 Subject: [PATCH] [-] FO :#PSTEST-145 : fixed a translation bug git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11685 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/front/CartController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/front/CartController.php b/controllers/front/CartController.php index f23f96500..8128bf530 100644 --- a/controllers/front/CartController.php +++ b/controllers/front/CartController.php @@ -228,7 +228,7 @@ class CartControllerCore extends FrontController $this->errors[] = Tools::displayError('You must add').' '.$minimal_quantity.' '.Tools::displayError('Minimum quantity'); } else if (!$updateQuantity) - $this->errors[] = Tools::displayError('You already have the maximum quantity available for this product.'); + $this->errors[] = Tools::displayError('You already have the maximum quantity available for this product.', false); } } CartRule::autoRemoveFromCart();