mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
비밀번호 수정시 비밀번호 보안수준을 통과하지 못했는데도 change_password_date가 변경되는 문제 해결 xpressengine/xe-core#1224
This commit is contained in:
parent
d124c3b116
commit
ceae3b9310
1 changed files with 4 additions and 3 deletions
|
|
@ -2242,8 +2242,6 @@ class memberController extends member
|
|||
*/
|
||||
function updateMemberPassword($args)
|
||||
{
|
||||
$output = executeQuery('member.updateChangePasswordDate', $args);
|
||||
|
||||
if($args->password)
|
||||
{
|
||||
|
||||
|
|
@ -2272,7 +2270,10 @@ class memberController extends member
|
|||
}
|
||||
|
||||
$output = executeQuery('member.updateMemberPassword', $args);;
|
||||
|
||||
if($output->toBool())
|
||||
{
|
||||
$output = executeQuery('member.updateChangePasswordDate', $args);
|
||||
}
|
||||
$this->_clearMemberCache($args->member_srl);
|
||||
|
||||
return $output;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue