From 73adcdf9b023d20f7d41fe2f1ee75a2bb09fa4bb Mon Sep 17 00:00:00 2001 From: lLefevre Date: Tue, 10 Jul 2012 13:57:00 +0000 Subject: [PATCH] [-] BO : fix #PSCFV-3127 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16309 b9a71923-0436-4b27-9f14-aed3839534dd --- controllers/admin/AdminEmployeesController.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/controllers/admin/AdminEmployeesController.php b/controllers/admin/AdminEmployeesController.php index a028fb250..0df02461e 100644 --- a/controllers/admin/AdminEmployeesController.php +++ b/controllers/admin/AdminEmployeesController.php @@ -327,7 +327,9 @@ class AdminEmployeesControllerCore extends AdminController ); $this->fields_value['passwd'] = false; - $this->fields_value['id_lang'] = $this->context->language->id; + + if (empty($obj->id)) + $this->fields_value['id_lang'] = $this->context->language->id; return parent::renderForm(); }