From 6fff7577578aba28d72749ba4aa07e4e92cdd09e Mon Sep 17 00:00:00 2001 From: vKham Date: Tue, 27 Dec 2011 17:33:50 +0000 Subject: [PATCH] //add fix table extensible currencies git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11813 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminCurrenciesController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/controllers/admin/AdminCurrenciesController.php b/controllers/admin/AdminCurrenciesController.php index 298d0433c..0834bfe48 100644 --- a/controllers/admin/AdminCurrenciesController.php +++ b/controllers/admin/AdminCurrenciesController.php @@ -35,11 +35,11 @@ class AdminCurrenciesControllerCore extends AdminController $this->fieldsDisplay = array( 'id_currency' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25), - 'name' => array('title' => $this->l('Currency'), 'width' => 100), - 'iso_code' => array('title' => $this->l('ISO code'), 'align' => 'center', 'width' => 35), - 'iso_code_num' => array('title' => $this->l('ISO code num'), 'align' => 'center', 'width' => 35), + 'name' => array('title' => $this->l('Currency')), + 'iso_code' => array('title' => $this->l('ISO code'), 'align' => 'center', 'width' => 80), + 'iso_code_num' => array('title' => $this->l('ISO code num'), 'align' => 'center', 'width' => 120), 'sign' => array('title' => $this->l('Symbol'), 'width' => 20, 'align' => 'center', 'orderby' => false, 'search' => false), - 'conversion_rate' => array('title' => $this->l('Conversion rate'), 'float' => true, 'align' => 'center', 'width' => 50, 'search' => false), + 'conversion_rate' => array('title' => $this->l('Conversion rate'), 'float' => true, 'align' => 'center', 'width' => 130, 'search' => false), 'active' => array('title' => $this->l('Enabled'), 'width' => 25, 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false), );