From c1d66b15470fded6ed7d8b769dd0a1e129ee81fe Mon Sep 17 00:00:00 2001 From: Francois Gaillard Date: Mon, 2 Jan 2012 13:40:53 +0000 Subject: [PATCH] [-] BO : #PSTEST-242 : First name & last name order changed in customers edition form --- controllers/admin/AdminCustomersController.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/controllers/admin/AdminCustomersController.php b/controllers/admin/AdminCustomersController.php index b59dad460..86452875d 100644 --- a/controllers/admin/AdminCustomersController.php +++ b/controllers/admin/AdminCustomersController.php @@ -243,14 +243,6 @@ class AdminCustomersControllerCore extends AdminController 'class' => 't', 'values' => $list_genders ), - array( - 'type' => 'text', - 'label' => $this->l('Last name:'), - 'name' => 'lastname', - 'size' => 33, - 'required' => true, - 'hint' => $this->l('Invalid characters:').' 0-9!<>,;?=+()@#"�{}_$%:' - ), array( 'type' => 'text', 'label' => $this->l('First name:'), @@ -259,6 +251,14 @@ class AdminCustomersControllerCore extends AdminController 'required' => true, 'hint' => $this->l('Forbidden characters:').' 0-9!<>,;?=+()@#"�{}_$%:' ), + array( + 'type' => 'text', + 'label' => $this->l('Last name:'), + 'name' => 'lastname', + 'size' => 33, + 'required' => true, + 'hint' => $this->l('Invalid characters:').' 0-9!<>,;?=+()@#"�{}_$%:' + ), array( 'type' => 'password', 'label' => $this->l('Password:'),