From 0bac60447edc5b399768813675ec60ad9c69ae05 Mon Sep 17 00:00:00 2001 From: fBrignoli Date: Tue, 11 Oct 2011 09:55:05 +0000 Subject: [PATCH] [*] BO : AdminTaxRulesGroup country select size git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9213 b9a71923-0436-4b27-9f14-aed3839534dd --- admin-dev/tabs/AdminTaxRulesGroup.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/admin-dev/tabs/AdminTaxRulesGroup.php b/admin-dev/tabs/AdminTaxRulesGroup.php index 4714ecfd7..0fecf1a99 100755 --- a/admin-dev/tabs/AdminTaxRulesGroup.php +++ b/admin-dev/tabs/AdminTaxRulesGroup.php @@ -335,7 +335,11 @@ EOT; die(Tools::displayError('Unable to load the tax rule!')); $country_select = Helper::selectInput(Country::getCountries((int)$cookie->id_lang), - array('id' => 'country', 'name' => 'country[]', 'onclick' => 'populateStates($(this).val(), \'\')', 'multiple' => 'multiple'), + array('id' => 'country', + 'name' => 'country[]', + 'onclick' => 'populateStates($(this).val(), \'\')', + 'multiple' => 'multiple', + 'size' => 15), array('key' => 'id_country', 'value' => 'name', 'selected' => $this->selected_countries,