- {$currency_left_sign}
{$currency_right_sign} {l s='(tax excl.)'}
+
+
+ {$currency->prefix}{$currency->suffix} {l s='(tax excl.)'}
+
{elseif $field['type'] == 'textLang' || $field['type'] == 'textareaLang' || $field['type'] == 'selectLang'}
@@ -228,16 +232,17 @@
{elseif $field['type'] == 'selectLang'}
{foreach $languages as $language}
-
-
-
+
+
+
+
{/foreach}
{/if}
diff --git a/controllers/admin/AdminCarriersController.php b/controllers/admin/AdminCarriersController.php
index 84a51b04d..5f9ac467d 100644
--- a/controllers/admin/AdminCarriersController.php
+++ b/controllers/admin/AdminCarriersController.php
@@ -30,6 +30,7 @@ class AdminCarriersControllerCore extends AdminController
public function __construct()
{
+ $this->bootstrap = true;
$this->table = 'carrier';
$this->className = 'Carrier';
$this->lang = false;
diff --git a/controllers/admin/AdminRangePriceController.php b/controllers/admin/AdminRangePriceController.php
index f0baa613c..51de218fe 100644
--- a/controllers/admin/AdminRangePriceController.php
+++ b/controllers/admin/AdminRangePriceController.php
@@ -28,6 +28,7 @@ class AdminRangePriceControllerCore extends AdminController
{
public function __construct()
{
+ $this->bootstrap = true;
$this->table = 'range_price';
$this->className = 'RangePrice';
$this->lang = false;
@@ -81,7 +82,6 @@ class AdminRangePriceControllerCore extends AdminController
'type' => 'text',
'label' => $this->l('From:'),
'name' => 'delimiter1',
- 'size' => 5,
'required' => true,
'suffix' => $currency->getSign('right').' '.$this->l('(Tax Incl.)'),
'desc' => $this->l('Start range (included)'),
@@ -91,7 +91,6 @@ class AdminRangePriceControllerCore extends AdminController
'type' => 'text',
'label' => $this->l('To:'),
'name' => 'delimiter2',
- 'size' => 5,
'required' => true,
'suffix' => $currency->getSign('right').' '.$this->l('(Tax Incl.)'),
'desc' => $this->l('End range (excluded)'),
diff --git a/controllers/admin/AdminRangeWeightController.php b/controllers/admin/AdminRangeWeightController.php
index 25f1ca895..a26f7c21d 100644
--- a/controllers/admin/AdminRangeWeightController.php
+++ b/controllers/admin/AdminRangeWeightController.php
@@ -28,6 +28,7 @@ class AdminRangeWeightControllerCore extends AdminController
{
public function __construct()
{
+ $this->bootstrap = true;
$this->table = 'range_weight';
$this->className = 'RangeWeight';
$this->lang = false;
diff --git a/controllers/admin/AdminShippingController.php b/controllers/admin/AdminShippingController.php
index 7d804b0f9..7200f51b5 100644
--- a/controllers/admin/AdminShippingController.php
+++ b/controllers/admin/AdminShippingController.php
@@ -30,6 +30,7 @@ class AdminShippingControllerCore extends AdminController
public function __construct()
{
+ $this->bootstrap = true;
parent::__construct();
$this->table = 'delivery';