Merge branch 'g5'
This commit is contained in:
@ -16,12 +16,8 @@ include_once('./_head.sub.php');
|
|||||||
|
|
||||||
$url = $_GET['url'];
|
$url = $_GET['url'];
|
||||||
|
|
||||||
$p = parse_url($url);
|
// url 체크
|
||||||
if ((isset($p['scheme']) && $p['scheme']) || (isset($p['host']) && $p['host'])) {
|
check_url_host($url);
|
||||||
//print_r2($p);
|
|
||||||
if ($p['host'].(isset($p['port']) ? ':'.$p['port'] : '') != $_SERVER['HTTP_HOST'])
|
|
||||||
alert('url에 타 도메인을 지정할 수 없습니다.');
|
|
||||||
}
|
|
||||||
|
|
||||||
include_once($member_skin_path.'/member_confirm.skin.php');
|
include_once($member_skin_path.'/member_confirm.skin.php');
|
||||||
|
|
||||||
|
|||||||
@ -10,7 +10,11 @@ add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">',
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
<strong>비밀번호를 한번 더 입력해주세요.</strong>
|
<strong>비밀번호를 한번 더 입력해주세요.</strong>
|
||||||
|
<?php if ($url == 'member_leave.php') { ?>
|
||||||
|
비밀번호를 입력하시면 회원탈퇴가 완료됩니다.
|
||||||
|
<?php }else{ ?>
|
||||||
회원님의 정보를 안전하게 보호하기 위해 비밀번호를 한번 더 확인합니다.
|
회원님의 정보를 안전하게 보호하기 위해 비밀번호를 한번 더 확인합니다.
|
||||||
|
<?php } ?>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<form name="fmemberconfirm" action="<?php echo $url ?>" onsubmit="return fmemberconfirm_submit(this);" method="post">
|
<form name="fmemberconfirm" action="<?php echo $url ?>" onsubmit="return fmemberconfirm_submit(this);" method="post">
|
||||||
|
|||||||
Reference in New Issue
Block a user