From dbfc56473d7daca556a78077750d6b4551a5928e Mon Sep 17 00:00:00 2001 From: fBrignoli Date: Thu, 23 Feb 2012 14:12:30 +0000 Subject: [PATCH] [-] BO : Bug Fixed #PSTEST-695 - Are ranges defined Tax Excl or Incl? => Incl git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13559 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminRangePriceController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controllers/admin/AdminRangePriceController.php b/controllers/admin/AdminRangePriceController.php index 922ca1cda..e7aeb68fc 100644 --- a/controllers/admin/AdminRangePriceController.php +++ b/controllers/admin/AdminRangePriceController.php @@ -84,7 +84,7 @@ class AdminRangePriceControllerCore extends AdminController 'name' => 'delimiter1', 'size' => 5, 'required' => true, - 'suffix' => $currency->getSign('right'), + 'suffix' => $currency->getSign('right').' '.$this->l('(Tax Incl.)'), 'desc' => $this->l('Range start (included)'), 'string_format' => '%.2f' ), @@ -94,7 +94,7 @@ class AdminRangePriceControllerCore extends AdminController 'name' => 'delimiter2', 'size' => 5, 'required' => true, - 'suffix' => $currency->getSign('right'), + 'suffix' => $currency->getSign('right').' '.$this->l('(Tax Incl.)'), 'desc' => $this->l('Range end (excluded)'), 'string_format' => '%.2f' ),