42 lines
963 B
PHP
42 lines
963 B
PHP
<?php
|
|
include_once('./_common.php');
|
|
|
|
if ($is_guest)
|
|
alert('로그인 한 회원만 접근하실 수 있습니다.', G5_BBS_URL.'/login.php');
|
|
|
|
/*
|
|
if ($url)
|
|
$urlencode = urlencode($url);
|
|
else
|
|
$urlencode = urlencode($_SERVER[REQUEST_URI]);
|
|
*/
|
|
|
|
$url = clean_xss_tags($_GET['url']);
|
|
|
|
//소셜 로그인 한 경우
|
|
if( function_exists('social_member_comfirm_redirect') && (! $url || $url === 'register_form.php' || (function_exists('social_is_edit_page') && social_is_edit_page($url) ) ) ){
|
|
social_member_comfirm_redirect();
|
|
}
|
|
|
|
$g5['title'] = '회원 비밀번호 확인';
|
|
include_once('./_head.sub.php');
|
|
|
|
// url 체크
|
|
check_url_host($url, '', G5_URL, true);
|
|
|
|
if($url){
|
|
$url = preg_replace('#^/\\\{1,}#', '/', $url);
|
|
|
|
if( preg_match('#^/{3,}#', $url) ){
|
|
$url = preg_replace('#^/{3,}#', '/', $url);
|
|
}
|
|
}
|
|
|
|
|
|
$url = get_text($url);
|
|
|
|
include_once($member_skin_path.'/member_confirm.skin.php');
|
|
|
|
include_once('./_tail.sub.php');
|
|
?>
|