소셜 로그인한 계정은 회원 탈퇴를 못하는 오류 수정

This commit is contained in:
thisgun
2018-10-30 16:02:50 +09:00
parent a45241f4bc
commit 26f6edfd0b

View File

@ -11,16 +11,16 @@ else
$urlencode = urlencode($_SERVER[REQUEST_URI]);
*/
$url = clean_xss_tags($_GET['url']);
//소셜 로그인 한 경우
if( function_exists('social_member_comfirm_redirect') ){
if( function_exists('social_member_comfirm_redirect') && (! $url || $url === 'register_form.php') ){
social_member_comfirm_redirect();
}
$g5['title'] = '회원 비밀번호 확인';
include_once('./_head.sub.php');
$url = clean_xss_tags($_GET['url']);
// url 체크
check_url_host($url, '', G5_URL, true);