From 4afe87e550fe11368e6fe164c8fc583465fc882c Mon Sep 17 00:00:00 2001 From: vChabot Date: Thu, 22 Dec 2011 18:53:18 +0000 Subject: [PATCH] // BugFix : changing Name and FirstName position git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11668 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminEmployeesController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/controllers/admin/AdminEmployeesController.php b/controllers/admin/AdminEmployeesController.php index 8addeeed0..a49f3ffc0 100644 --- a/controllers/admin/AdminEmployeesController.php +++ b/controllers/admin/AdminEmployeesController.php @@ -123,15 +123,15 @@ class AdminEmployeesControllerCore extends AdminController 'input' => array( array( 'type' => 'text', - 'label' => $this->l('Last name:'), - 'name' => 'lastname', + 'label' => $this->l('First name:'), + 'name' => 'firstname', 'size' => 33, 'required' => true ), array( 'type' => 'text', - 'label' => $this->l('First name:'), - 'name' => 'firstname', + 'label' => $this->l('Last name:'), + 'name' => 'lastname', 'size' => 33, 'required' => true ),