From 6b08159929f1715ab04ebcfd625e30be75285eb8 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 28 Dec 2016 17:59:57 +0200 Subject: [PATCH] user_group_id remove bug fix --- src/app/frontend/controllers/CustomerController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/frontend/controllers/CustomerController.php b/src/app/frontend/controllers/CustomerController.php index d8aca95..5aeafe4 100644 --- a/src/app/frontend/controllers/CustomerController.php +++ b/src/app/frontend/controllers/CustomerController.php @@ -499,7 +499,7 @@ class CustomerController extends \controllers\ControllerBase $order_passwd_new = $this->request->getPost('order_passwd_new', 'string', NULL ); $order_passwd = $this->request->getPost('order_passwd', 'string', NULL ); $customer_edit['passwd'] = (strlen($order_passwd_new)>0) ? $this->common->hashPasswd($order_passwd_new) : $order_passwd; - $customer_edit['users_group_id'] = $this->request->getPost('users_group_id', 'string', NULL ); + //$customer_edit['users_group_id'] = $this->request->getPost('users_group_id', 'string', NULL ); /*foreach( $customer_edit as $o ) { -- libgit2 0.21.4