Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
인증메일 재 발송용 코드에 오류가 있습니다.
원래는 아래 처럼 와야 하는데
http://xxx.kr/index.php?module=member&act=procMemberAuthAccount&member_srl=XXX&auth_key=XXXXX
재발송에는 member_srl이 빠진 아래 처럼 인증 메일이 날아오러다고요.
확인 결과
http://xxx.kr/index.php?module=member&act=procMemberAuthAccount&auth_key=XXXXX
$memberInfo->member_srl 이런식으로 되어있던데 다른곳과 다르게
$member_info->member_srl 이걸로 교체해야 동작 합니다.
$auth_url = getFullUrl('','module','member','act','procMemberAuthAccount','member_srl',$member_info->member_srl, 'auth_key',$auth_info->auth_key);
이 코드로 바꾸면 정상 동작합니다.