Commit 6b08159929f1715ab04ebcfd625e30be75285eb8
1 parent
a31b2ccf
user_group_id remove bug fix
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/frontend/controllers/CustomerController.php
... | ... | @@ -499,7 +499,7 @@ class CustomerController extends \controllers\ControllerBase |
499 | 499 | $order_passwd_new = $this->request->getPost('order_passwd_new', 'string', NULL ); |
500 | 500 | $order_passwd = $this->request->getPost('order_passwd', 'string', NULL ); |
501 | 501 | $customer_edit['passwd'] = (strlen($order_passwd_new)>0) ? $this->common->hashPasswd($order_passwd_new) : $order_passwd; |
502 | - $customer_edit['users_group_id'] = $this->request->getPost('users_group_id', 'string', NULL ); | |
502 | + //$customer_edit['users_group_id'] = $this->request->getPost('users_group_id', 'string', NULL ); | |
503 | 503 | |
504 | 504 | /*foreach( $customer_edit as $o ) |
505 | 505 | { | ... | ... |