From a1d23ab206367ca6ee2bd6472202c84ad99472db Mon Sep 17 00:00:00 2001 From: tDidierjean Date: Fri, 10 Feb 2012 09:08:33 +0000 Subject: [PATCH] [-] BO : #PSTEST-700 fix attributes value display git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13206 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminAttributesGroupsController.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/controllers/admin/AdminAttributesGroupsController.php b/controllers/admin/AdminAttributesGroupsController.php index 975e07f80..9da1bb0cb 100644 --- a/controllers/admin/AdminAttributesGroupsController.php +++ b/controllers/admin/AdminAttributesGroupsController.php @@ -99,11 +99,12 @@ class AdminAttributesGroupsControllerCore extends AdminController $this->fieldsDisplay = array( 'id_attribute' => array( 'title' => $this->l('ID'), - 'width' => 25 + 'width' => 40, + 'align' => 'center' ), 'name' => array( - 'title' => $this->l('Name'), - 'width' => 140, + 'title' => $this->l('Value'), + 'width' => 'auto', 'filter_key' => 'b!name' ) ); @@ -270,7 +271,7 @@ class AdminAttributesGroupsControllerCore extends AdminController ), array( 'type' => 'text', - 'label' => $this->l('Name:'), + 'label' => $this->l('Value:'), 'name' => 'name', 'lang' => true, 'size' => 33,