diff --git a/controllers/admin/AdminCustomersController.php b/controllers/admin/AdminCustomersController.php index 991abc41f..0dde9ad1e 100644 --- a/controllers/admin/AdminCustomersController.php +++ b/controllers/admin/AdminCustomersController.php @@ -263,6 +263,13 @@ class AdminCustomersControllerCore extends AdminController 'required' => true, 'hint' => $this->l('Invalid characters:').' 0-9!<>,;?=+()@#"�{}_$%:' ), + array( + 'type' => 'text', + 'label' => $this->l('E-mail address:'), + 'name' => 'email', + 'size' => 33, + 'required' => true + ), array( 'type' => 'password', 'label' => $this->l('Password:'), @@ -271,13 +278,6 @@ class AdminCustomersControllerCore extends AdminController 'required' => ($obj->id ? false : true), 'desc' => ($obj->id ? $this->l('Leave blank if no change') : $this->l('5 characters min., only letters, numbers, or').' -_') ), - array( - 'type' => 'text', - 'label' => $this->l('E-mail address:'), - 'name' => 'email', - 'size' => 33, - 'required' => true - ), array( 'type' => 'birthday', 'label' => $this->l('Birthday:'),