휴대폰 성인인증 기능 사용 설정 필드 삭제

This commit is contained in:
gnuboard
2013-04-24 17:53:12 +09:00
parent a54721a0ce
commit 77bafe4df5
5 changed files with 8 additions and 47 deletions

View File

@ -18,14 +18,6 @@ if ($w=='' || ($w=='u' && $reg_hp != $old_hp)) {
$ss_hash = get_session('ss_kcpcert_hash');
if(get_session('ss_kcpcert_hash') != $reg_hash)
die("{\"error\":\"이름 또는 휴대폰번호가 올바르지 않습니다. 정상적인 방법으로 이용해 주세요.\"}");
/*
// 성인인증을 사용한다면
if($config['cf_adult_check']) {
if(get_session('ss_adult_check') != 'Y')
die('성인인증이 되지 않았습니다. 다음에 다시 가입해 주세요.');
}
*/
}
die("{\"error\":\"\"}"); // 정상

View File

@ -27,14 +27,6 @@ if($w == '') {
if(get_session('ss_kcpcert_hash') != $reg_hash)
alert('이름 또는 휴대폰번호가 올바르지 않습니다. 정상적인 방법으로 이용해 주세요.', '', true, true);
/*
// 성인인증을 사용한다면
if($config['cf_adult_check']) {
if(get_session('ss_adult_check') != 'Y')
alert('성인인증이 되지 않았습니다. 다음에 다시 가입해 주세요.', '', true, true);
}
*/
} else if($w == 'u') {
// 휴대폰번호 변경체크
$old_hp = preg_replace("/[^0-9]/", "", $_POST['old_mb_hp']);