// 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
This commit is contained in:
vChabot
2011-12-22 18:53:18 +00:00
parent bd24529ef1
commit 4afe87e550

View File

@@ -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
),