Home
last modified time | relevance | path

Searched refs:newpw (Results 1 – 4 of 4) sorted by path

/plugin/authucenter/
H A Dauth.php462 private function _uc_user_edit($username, $oldpw, $newpw, $email){ argument
463 return uc_user_edit($this->_convert_charset($username), $oldpw, $newpw, $email, 0);
/plugin/authucenter/lib/uc_client/
H A Dclient.php388 function uc_user_edit($username, $oldpw, $newpw, $email, $ignoreoldpw = 0, $questionid = '', $answe… argument
389 …, 'user', 'edit', array('username'=>$username, 'oldpw'=>$oldpw, 'newpw'=>$newpw, 'email'=>$email, …
/plugin/authucenter/lib/uc_client/control/
H A Duser.php86 $newpw = $this->input('newpw');
95 …$status = $_ENV['user']->edit_user($username, $oldpw, $newpw, $email, $ignoreoldpw, $questionid, $…
97 if($newpw && $status > 0) {
/plugin/authucenter/lib/uc_client/model/
H A Duser.php141 …function edit_user($username, $oldpw, $newpw, $email, $ignoreoldpw = 0, $questionid = '', $answer … argument
155 $sqladd = $newpw ? "password='".md5(md5($newpw).$data['salt'])."'" : '';