From b17c760aefbcadaf78f4ade6307a124ba8688c3b Mon Sep 17 00:00:00 2001 From: lLefevre Date: Fri, 16 Mar 2012 09:46:01 +0000 Subject: [PATCH] [-] BO : #PSTEST-927 : Fix bug git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14211 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminStoresController.php | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/controllers/admin/AdminStoresController.php b/controllers/admin/AdminStoresController.php index ae0ad3a1b..329ac33e4 100644 --- a/controllers/admin/AdminStoresController.php +++ b/controllers/admin/AdminStoresController.php @@ -46,24 +46,13 @@ class AdminStoresControllerCore extends AdminController ); $this->fieldsDisplay = array( - 'id_store' => array( - 'title' => $this->l('ID'), - 'align' => 'center', - 'width' => 25 - ), - 'country' => array( - 'title' => $this->l('Country'), - 'width' => 100, - 'filter_key' => 'cl!name' - ), - 'state' => array( - 'title' => $this->l('State'), - 'width' => 100, - 'filter_key' => 'st!name' - ), + 'id_store' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25), + 'name' => array('title' => $this->l('Name'), 'width' => 120, 'filter_key' => 'a!name'), + 'address1' => array('title' => $this->l('Address'), 'width' => 120, 'filter_key' => 'a!address1'), 'city' => array('title' => $this->l('City'), 'width' => 100), 'postcode' => array('title' => $this->l('Zip code'), 'width' => 50), - 'name' => array('title' => $this->l('Name'), 'width' => 120, 'filter_key' => 'a!name'), + 'state' => array('title' => $this->l('State'), 'width' => 100, 'filter_key' => 'st!name'), + 'country' => array('title' => $this->l('Country'), 'width' => 100, 'filter_key' => 'cl!name'), 'phone' => array('title' => $this->l('Phone'), 'width' => 70), 'fax' => array('title' => $this->l('Fax'), 'width' => 70), 'active' => array('title' => $this->l('Enabled'), 'width' => 70, 'align' => 'center', 'active' => 'status', 'type' => 'bool', 'orderby' => false)