From e812d9bd33f5f34a771d6855f96118e2a37a2002 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 --- 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();