mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
가입인증메일 재발송시 인증키의 유효기간을 갱신
This commit is contained in:
parent
89d23f2e22
commit
d04d65ff57
1 changed files with 6 additions and 0 deletions
|
|
@ -1279,6 +1279,12 @@ class memberController extends member
|
|||
if(!$output->data || !$output->data[0]->auth_key) return new Object(-1, 'msg_invalid_request');
|
||||
$auth_info = $output->data[0];
|
||||
|
||||
// Update the regdate of authmail entry
|
||||
$renewal_args = new stdClass;
|
||||
$renewal_args->member_srl = $member_info->member_srl;
|
||||
$renewal_args->auth_key = $auth_info->auth_key;
|
||||
$output = executeQuery('member.updateAuthMail', $renewal_args);
|
||||
|
||||
$memberInfo = array();
|
||||
global $lang;
|
||||
if(is_array($member_config->signupForm))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue