// fix missing ecotax field in AdminTaxes

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10105 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2011-11-14 14:39:02 +00:00
parent 44275b0939
commit 554bc0e943
+1 -1
View File
@@ -60,7 +60,7 @@ class AdminTaxesControllerCore extends AdminController
);
if (Configuration::get('PS_USE_ECOTAX'))
$this->optionsList['general']['fields']['PS_ECOTAX_TAX_RULES_GROUP_ID'] = array('title' => $this->l('Ecotax:'), 'desc' => $this->l('The tax to apply on the ecotax (e.g., French ecotax: 19.6%).'),
$this->options['general']['fields']['PS_ECOTAX_TAX_RULES_GROUP_ID'] = array('title' => $this->l('Ecotax:'), 'desc' => $this->l('The tax to apply on the ecotax (e.g., French ecotax: 19.6%).'),
'cast' => 'intval', 'type' => 'select', 'identifier' => 'id_tax', 'identifier' => 'id_tax_rules_group', 'list' => TaxRulesGroup::getTaxRulesGroupsForOptions());
parent::__construct();