휴대폰사용여부에 관계없이 휴대폰인증 체크하도록 수정

This commit is contained in:
chicpro
2013-02-27 10:22:02 +09:00
parent 0bce0b4e51
commit 38fa2c0b43
3 changed files with 24 additions and 32 deletions

View File

@ -6,35 +6,33 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
/* ======================================================================================================= */
/* = 휴대폰인증 = */
/* ======================================================================================================= */
if($config['cf_use_hp'] && $config['cf_req_hp']) {
if($w == '') {
if($w == '') {
// 본인인증체크
$kcpcert_no = trim($_POST['kcpcert_no']);
if(!$kcpcert_no)
alert('휴대폰인증이 되지 않았습니다. 휴대폰인증을 해주세요.', "", true, true);
// 본인인증 hash 체크
$reg_hp = preg_replace("/[^0-9]/", "", $mb_hp);
$reg_hash = md5($reg_hp.$mb_name.$kcpcert_no);
if(get_session('ss_kcpcert_hash') != $reg_hash)
alert('휴대폰인증 정보가 올바르지 않습니다. 정상적인 방법으로 이용해 주세요.', "", true, true);
} else if($w == 'u') {
// 휴대폰번호 변경체크
$patt = "/[^0-9]/";
$old_hp = preg_replace($patt, "", $_POST['old_mb_hp']);
$reg_hp = preg_replace($patt, "", $mb_hp);
if($old_hp != $reg_hp) {
// 본인인증체크
$kcpcert_no = trim($_POST['kcpcert_no']);
if(!$kcpcert_no)
alert('휴대폰인증이 되지 않았습니다. 휴대폰인증을 해주세요.', "", true, true);
alert('휴대폰번호가 변경됐습니다. 휴대폰인증을 해주세요.', "", true, true);
// 본인인증 hash 체크
$reg_hp = preg_replace("/[^0-9]/", "", $mb_hp);
$reg_hash = md5($reg_hp.$mb_name.$kcpcert_no);
if(get_session('ss_kcpcert_hash') != $reg_hash)
alert('휴대폰인증 정보가 올바르지 않습니다. 정상적인 방법으로 이용해 주세요.', "", true, true);
} else if($w == 'u') {
// 휴대폰번호 변경체크
$patt = "/[^0-9]/";
$old_hp = preg_replace($patt, "", $_POST['old_mb_hp']);
$reg_hp = preg_replace($patt, "", $mb_hp);
if($old_hp != $reg_hp) {
// 본인인증체크
$kcpcert_no = trim($_POST['kcpcert_no']);
if(!$kcpcert_no)
alert('휴대폰번호가 변경됐습니다. 휴대폰인증을 해주세요.', "", true, true);
// 본인인증 hash 체크
$reg_hash = md5($reg_hp.$mb_name.$kcpcert_no);
if(get_session('ss_kcpcert_hash') != $reg_hash)
alert('휴대폰인증 정보가 올바르지 않습니다. 정상적인 방법으로 이용해 주세요.', "", true, true);
}
}
}
/* ======================================================================================================= */