// BugFix : changing Name and FirstName position

This commit is contained in:
vChabot
2011-12-22 18:53:18 +00:00
parent a279e87188
commit e43e4aa484
@@ -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
),