From b3a0ab03e89187760d33345efe02497cd14699c8 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 --- 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' ),