diff --git a/adm/config_form.php b/adm/config_form.php index c08da286a..1ed6df440 100644 --- a/adm/config_form.php +++ b/adm/config_form.php @@ -283,11 +283,19 @@ if(!isset($config['cf_cert_find']) ){ ADD COLUMN `cf_cert_find` TINYINT(4) NOT NULL DEFAULT '0' AFTER `cf_cert_use`; "; sql_query($sql, false); } -// 통합인증 필드 추가 -if(!isset($config['cf_cert_sa']) ){ +// 간편인증 필드 추가 +if(!isset($config['cf_cert_simple']) ){ $sql = "ALTER TABLE `{$g5['config_table']}` - ADD COLUMN `cf_cert_sa` VARCHAR(255) NOT NULL DEFAULT '' AFTER `cf_cert_hp`, - ADD COLUMN `cf_cert_kg_cd` VARCHAR(255) NOT NULL DEFAULT '' AFTER `cf_cert_sa`, + ADD COLUMN `cf_cert_simple` VARCHAR(255) NOT NULL DEFAULT '' AFTER `cf_cert_hp`; "; + sql_query($sql, false); +} +if(!isset($config['cf_cert_kg_cd']) ){ + $sql = "ALTER TABLE `{$g5['config_table']}` + ADD COLUMN `cf_cert_kg_cd` VARCHAR(255) NOT NULL DEFAULT '' AFTER `cf_cert_simple`; "; + sql_query($sql, false); +} +if(!isset($config['cf_cert_kg_mid']) ){ + $sql = "ALTER TABLE `{$g5['config_table']}` ADD COLUMN `cf_cert_kg_mid` VARCHAR(255) NOT NULL DEFAULT '' AFTER `cf_cert_kg_cd`; "; sql_query($sql, false); } @@ -859,11 +867,11 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) { - + - + + @@ -892,11 +900,11 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) { SRA - KG이니시스 통합인증 신청페이지 + KG이니시스 간편인증 신청페이지 - + diff --git a/adm/config_form_update.php b/adm/config_form_update.php index 7c6023aef..c5d08a35f 100644 --- a/adm/config_form_update.php +++ b/adm/config_form_update.php @@ -102,7 +102,7 @@ $check_keys = array( 'cf_cert_find' => 'int', 'cf_cert_ipin' => 'char', 'cf_cert_hp' => 'char', -'cf_cert_sa' => 'char', +'cf_cert_simple' => 'char', 'cf_admin_email' => 'char', 'cf_admin_email_name' => 'char', 'cf_add_script' => 'text', @@ -173,13 +173,13 @@ foreach( $check_keys as $k => $v ){ } // 본인확인을 사용할 경우 아이핀, 휴대폰인증 중 하나는 선택되어야 함 -if($_POST['cf_cert_use'] && !$_POST['cf_cert_ipin'] && !$_POST['cf_cert_hp'] && !$_POST['cf_cert_sa']) +if($_POST['cf_cert_use'] && !$_POST['cf_cert_ipin'] && !$_POST['cf_cert_hp'] && !$_POST['cf_cert_simple']) alert('본인확인을 위해 아이핀, 휴대폰 본인확인, KG이니시스 간편인증 서비스 중 하나 이상 선택해 주십시오.'); if(!$_POST['cf_cert_use']) { $posts[$key] = $_POST['cf_cert_ipin'] = ''; $posts[$key] = $_POST['cf_cert_hp'] = ''; - $posts[$key] = $_POST['cf_cert_sa'] = ''; + $posts[$key] = $_POST['cf_cert_simple'] = ''; } $sql = " update {$g5['config_table']} @@ -280,7 +280,7 @@ $sql = " update {$g5['config_table']} cf_cert_find = '{$_POST['cf_cert_find']}', cf_cert_ipin = '{$_POST['cf_cert_ipin']}', cf_cert_hp = '{$_POST['cf_cert_hp']}', - cf_cert_sa = '{$_POST['cf_cert_sa']}', + cf_cert_simple = '{$_POST['cf_cert_simple']}', cf_cert_kg_cd = '{$_POST['cf_cert_kg_cd']}', cf_cert_kg_mid = '".trim($_POST['cf_cert_kg_mid'])."', cf_cert_kcb_cd = '{$_POST['cf_cert_kcb_cd']}', diff --git a/adm/member_form.php b/adm/member_form.php index 78d24862c..84679b476 100644 --- a/adm/member_form.php +++ b/adm/member_form.php @@ -96,9 +96,9 @@ else // 본인확인방법 switch($mb['mb_certify']) { - case 'sa': + case 'simple': $mb_certify_case = '간편인증'; - $mb_certify_val = 'sa'; + $mb_certify_val = 'simple'; break; case 'hp': $mb_certify_case = '휴대폰'; @@ -259,7 +259,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js 본인확인방법 - > + > > @@ -376,7 +376,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js while ($row = sql_fetch_array($mb_cert_history)) { $cnt++; switch($row['ch_type']){ - case 'sa': + case 'simple': $cert_type = '간편인증'; break; case 'hp': diff --git a/adm/member_list.php b/adm/member_list.php index 5acd59faf..78ba3efd9 100644 --- a/adm/member_list.php +++ b/adm/member_list.php @@ -194,7 +194,7 @@ $colspan = 16; $mb_certify_case = '아이핀'; $mb_certify_val = ''; break; - case 'sa': + case 'simple': $mb_certify_case = '간편인증'; $mb_certify_val = ''; break; @@ -240,7 +240,7 @@ $colspan = 16; ?> - > + >
>
diff --git a/bbs/member_cert_refresh_update.php b/bbs/member_cert_refresh_update.php index ad7dee3e8..1d4c8604f 100644 --- a/bbs/member_cert_refresh_update.php +++ b/bbs/member_cert_refresh_update.php @@ -72,7 +72,7 @@ $result = sql_query($sql, false); if($result){ if($cert_type == 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$md5_cert_no)) { // 아이핀일때 hash 값 체크 hp미포함) insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 - }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 통합인증, 휴대폰일때 hash 값 체크 hp포함 + }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 간편인증, 휴대폰일때 hash 값 체크 hp포함 insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 } } diff --git a/bbs/register_form.php b/bbs/register_form.php index 0e742ceb7..df6c1c8dc 100644 --- a/bbs/register_form.php +++ b/bbs/register_form.php @@ -144,8 +144,8 @@ $req_nick = !isset($member['mb_nick_date']) || (isset($member['mb_nick_date']) & $required = ($w=='') ? 'required' : ''; $readonly = ($w=='u') ? 'readonly' : ''; $name_readonly = ($w=='u' || ($config['cf_cert_use'] && $config['cf_cert_req']))? 'readonly' : ''; -$hp_required = ($config['cf_req_hp'] || (($config['cf_cert_use'] && $config['cf_cert_req']) && ($config['cf_cert_hp'] || $config['cf_cert_sa']) && $member['mb_certify'] != "ipin")) ? 'required':''; -$hp_readonly = (($config['cf_cert_use'] && $config['cf_cert_req']) && ($config['cf_cert_hp'] || $config['cf_cert_sa']) && $member['mb_certify'] != "ipin") ? 'readonly':''; +$hp_required = ($config['cf_req_hp'] || (($config['cf_cert_use'] && $config['cf_cert_req']) && ($config['cf_cert_hp'] || $config['cf_cert_simple']) && $member['mb_certify'] != "ipin")) ? 'required':''; +$hp_readonly = (($config['cf_cert_use'] && $config['cf_cert_req']) && ($config['cf_cert_hp'] || $config['cf_cert_simple']) && $member['mb_certify'] != "ipin") ? 'readonly':''; $agree = isset($_REQUEST['agree']) ? preg_replace('#[^0-9]#', '', $_REQUEST['agree']) : ''; $agree2 = isset($_REQUEST['agree2']) ? preg_replace('#[^0-9]#', '', $_REQUEST['agree2']) : ''; diff --git a/bbs/register_form_update.php b/bbs/register_form_update.php index 476ca6bba..6a1819a96 100644 --- a/bbs/register_form_update.php +++ b/bbs/register_form_update.php @@ -110,7 +110,7 @@ if ($w == '' || $w == 'u') { if ($msg = prohibit_mb_email($mb_email))alert($msg, "", true, true); // 휴대폰 필수입력일 경우 휴대폰번호 유효성 체크 - if ($config['cf_use_hp'] || ($config['cf_cert_hp'] || $config['cf_cert_sa']) && $config['cf_req_hp']) { + if ($config['cf_use_hp'] || ($config['cf_cert_hp'] || $config['cf_cert_simple']) && $config['cf_req_hp']) { if ($msg = valid_mb_hp($mb_hp)) alert($msg, "", true, true); } @@ -310,7 +310,7 @@ if ($w == '') { if($cert_type == 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$md5_cert_no)) { // 아이핀일때 hash 값 체크 hp미포함) insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 - }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 통합인증, 휴대폰일때 hash 값 체크 hp포함 + }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 간편인증, 휴대폰일때 hash 값 체크 hp포함 insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 } @@ -374,7 +374,7 @@ if ($w == '') { if($cert_type == 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$md5_cert_no)) { // 아이핀일때 hash 값 체크 hp미포함) insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 - }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 통합인증, 휴대폰일때 hash 값 체크 hp포함 + }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 간편인증, 휴대폰일때 hash 값 체크 hp포함 insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 } } diff --git a/common.php b/common.php index 5377de56b..dd4c2e1af 100644 --- a/common.php +++ b/common.php @@ -299,8 +299,8 @@ if( !function_exists('shop_check_is_pay_page') ){ $mobile_dir.'/'.$shop_dir.'/lg/xpay_approval.php', $mobile_dir.'/'.$shop_dir.'/kcp/order_approval_form.php', $shop_dir.'/kakaopay/inicis_kk_return.php', // 이니시스 카카오페이 (SIRK 로 시작하는 아이디 전용) - $plugin_dir."/inicert/ini_result.php", // 이니시스 통합인증 모듈 2021-09-10 http <-> https 간 세션 공유 문제로 인해 추가 - $plugin_dir."/inicert/ini_find_result.php", // 이니시스 통합인증 모듈 2021-09-10 http <-> https 간 세션 공유 문제로 인해 추가 + $plugin_dir."/inicert/ini_result.php", // 이니시스 간편인증 모듈 2021-09-10 http <-> https 간 세션 공유 문제로 인해 추가 + $plugin_dir."/inicert/ini_find_result.php", // 이니시스 간편인증 모듈 2021-09-10 http <-> https 간 세션 공유 문제로 인해 추가 ); $server_script_name = str_replace('\\', '/', $_SERVER['SCRIPT_NAME']); diff --git a/install/gnuboard5.sql b/install/gnuboard5.sql index f3d31467f..d9785a35c 100644 --- a/install/gnuboard5.sql +++ b/install/gnuboard5.sql @@ -288,7 +288,7 @@ CREATE TABLE IF NOT EXISTS `g5_config` ( `cf_cert_find` tinyint(4) NOT NULL DEFAULT '0', `cf_cert_ipin` varchar(255) NOT NULL DEFAULT '', `cf_cert_hp` varchar(255) NOT NULL DEFAULT '', - `cf_cert_sa` varchar(255) NOT NULL DEFAULT '', + `cf_cert_simple` varchar(255) NOT NULL DEFAULT '', `cf_cert_kg_cd` varchar(255) NOT NULL DEFAULT '', `cf_cert_kg_mid` varchar(255) NOT NULL DEFAULT '', `cf_cert_kcb_cd` varchar(255) NOT NULL DEFAULT '', diff --git a/js/certify.js b/js/certify.js index 8b160a966..c9c78576a 100644 --- a/js/certify.js +++ b/js/certify.js @@ -98,7 +98,7 @@ function cert_confirm() { var val = document.fregisterform.cert_type.value; switch(val) { - case "sa": + case "simple": type = "간편인증"; break; case "ipin": diff --git a/lib/common.lib.php b/lib/common.lib.php index b45067f6a..a92f05929 100644 --- a/lib/common.lib.php +++ b/lib/common.lib.php @@ -2823,7 +2823,7 @@ function certify_count_check($mb_id, $type) $row = sql_fetch($sql); switch($type) { - case 'sa' : + case 'simple' : $cert = '간편인증'; break; case 'hp': diff --git a/mobile/skin/member/basic/member_cert_refresh.skin.php b/mobile/skin/member/basic/member_cert_refresh.skin.php index 96f769d7d..162eb7b7b 100644 --- a/mobile/skin/member/basic/member_cert_refresh.skin.php +++ b/mobile/skin/member/basic/member_cert_refresh.skin.php @@ -3,7 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -57,7 +57,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] '; - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo '' . PHP_EOL; } if ($config['cf_cert_hp']) @@ -77,7 +77,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] var pageTypeParam = "pageType=register"; var f = document.fcertrefreshform; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/mobile/skin/member/basic/password_lost.skin.php b/mobile/skin/member/basic/password_lost.skin.php index febb17471..e9e40bcd8 100644 --- a/mobile/skin/member/basic/password_lost.skin.php +++ b/mobile/skin/member/basic/password_lost.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> +if($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> @@ -32,7 +32,7 @@ if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] |

본인인증으로 찾기

- + @@ -50,8 +50,8 @@ $(function() { $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=find"; - - // TOSS 통합인증 + + // TOSS 간편인증 var url = "/ini_request.php"; var type = ""; var params = ""; diff --git a/mobile/skin/member/basic/register_form.skin.php b/mobile/skin/member/basic/register_form.skin.php index 4f516a935..85d13accb 100644 --- a/mobile/skin/member/basic/register_form.skin.php +++ b/mobile/skin/member/basic/register_form.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); add_javascript('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -51,11 +51,11 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] $desc_name = ' - 본인확인 시 자동입력'; $desc_phone = ' - 본인확인 시 자동입력'; - if (!$config['cf_cert_sa'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { + if (!$config['cf_cert_simple'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { $desc_phone = ''; } - if($config['cf_cert_sa']) { + if($config['cf_cert_simple']) { echo ''.PHP_EOL; } if($config['cf_cert_hp']) @@ -70,7 +70,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
  • - " maxlength="20" placeholder="전화번호 (필수)"> + " maxlength="20" placeholder="전화번호 (필수)">
  • - +
  • class="frm_input full_input " maxlength="20" placeholder="휴대폰번호 (필수)"> - + @@ -293,7 +293,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=register"; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; @@ -359,7 +359,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] var type; switch(val) { - case "sa": + case "simple": type = "간편인증"; break; case "ipin": diff --git a/mobile/skin/social/social_register_member.skin.php b/mobile/skin/social/social_register_member.skin.php index 7d7074f57..8a8d19dc5 100644 --- a/mobile/skin/social/social_register_member.skin.php +++ b/mobile/skin/social/social_register_member.skin.php @@ -11,7 +11,7 @@ add_stylesheet('', 13); add_javascript('', 10); add_javascript('', 14); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 15); $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다.다른 이메일을 입력해 주세요.' : ''; @@ -91,9 +91,9 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다. - + - + @@ -104,7 +104,7 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다.
  • 간편인증'.PHP_EOL; } if ($config['cf_cert_hp']) @@ -210,7 +210,7 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다. $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=register"; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/plugin/inicert/ini_find_result.php b/plugin/inicert/ini_find_result.php index fe7bea811..c47b7a258 100644 --- a/plugin/inicert/ini_find_result.php +++ b/plugin/inicert/ini_find_result.php @@ -29,7 +29,7 @@ if ($_POST["resultCode"] === "0000") { if($res_data['resultCode'] === "0000") { - $cert_type = 'sa'; // 인증타입 + $cert_type = 'simple'; // 인증타입 $cert_no = $res_data['txId']; // 이니시스 트랜잭션 ID $phone_no = $res_data['userPhone']; // 전화번호 $user_name = $res_data['userName']; // 이름 diff --git a/plugin/inicert/ini_request.php b/plugin/inicert/ini_request.php index ab5551211..8d3a1ae3f 100644 --- a/plugin/inicert/ini_request.php +++ b/plugin/inicert/ini_request.php @@ -10,7 +10,7 @@ if($config['cf_cert_use'] == 2) { // 실서비스 일때 $mid = 'SRA'.$config['cf_cert_kg_mid']; // 부여받은 MID(상점ID) 입력(영업담당자 문의) $apiKey = $config['cf_cert_kg_cd']; // 부여받은 MID 에 대한 apiKey $mTxId ='SIR_'.$max_cr_id; - certify_count_check($member['mb_id'], 'sa'); // 금일 인증시도 횟수 체크 + certify_count_check($member['mb_id'], 'simple'); // 금일 인증시도 횟수 체크 } else { // 테스트 일때 $mid = "INIiasTest"; $apiKey = "TGdxb2l3enJDWFRTbTgvREU3MGYwUT09"; diff --git a/plugin/inicert/ini_result.php b/plugin/inicert/ini_result.php index 3c95443e1..3037d8ffd 100644 --- a/plugin/inicert/ini_result.php +++ b/plugin/inicert/ini_result.php @@ -31,7 +31,7 @@ if ($_POST["resultCode"] === "0000") { // echo $response; if($res_data['resultCode'] === "0000") { - $cert_type = 'sa'; // 인증타입 + $cert_type = 'simple'; // 인증타입 $cert_no = $res_data['txId']; // 이니시스 트랜잭션 ID $phone_no = $res_data['userPhone']; // 전화번호 $user_name = $res_data['userName']; // 이름 diff --git a/plugin/social/register_member_update.php b/plugin/social/register_member_update.php index 819572662..c7fbd602e 100644 --- a/plugin/social/register_member_update.php +++ b/plugin/social/register_member_update.php @@ -174,7 +174,7 @@ if($result) { if($cert_type == 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$md5_cert_no)) { // 아이핀일때 hash 값 체크 hp미포함) insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 - }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 통합인증, 휴대폰일때 hash 값 체크 hp포함 + }else if($cert_type != 'ipin' && get_session('ss_cert_hash') == md5($mb_name.$cert_type.get_session('ss_cert_birth').$mb_hp.$md5_cert_no)) { // 간편인증, 휴대폰일때 hash 값 체크 hp포함 insert_member_cert_history($mb_id, $mb_name, $mb_hp, get_session('ss_cert_birth'), get_session('ss_cert_type') ); // 본인인증 후 정보 수정 시 내역 기록 } // 회원가입 포인트 부여 diff --git a/skin/member/basic/member_cert_refresh.skin.php b/skin/member/basic/member_cert_refresh.skin.php index 8b5559ede..6ed192978 100644 --- a/skin/member/basic/member_cert_refresh.skin.php +++ b/skin/member/basic/member_cert_refresh.skin.php @@ -3,7 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -53,7 +53,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] '; - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo '' . PHP_EOL; } if ($config['cf_cert_hp']) @@ -73,7 +73,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] var pageTypeParam = "pageType=register"; var f = document.fcertrefreshform; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/skin/member/basic/password_lost.skin.php b/skin/member/basic/password_lost.skin.php index dce740ac2..97fc852cb 100644 --- a/skin/member/basic/password_lost.skin.php +++ b/skin/member/basic/password_lost.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> +if($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> @@ -32,7 +32,7 @@ if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] |

    본인인증으로 찾기

    - + @@ -50,8 +50,8 @@ $(function() { $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=find"; - - // TOSS 통합인증 + + // TOSS 간편인증 var url = "/ini_request.php"; var type = ""; var params = ""; diff --git a/skin/member/basic/register_form.skin.php b/skin/member/basic/register_form.skin.php index 30439f7b0..0e252688d 100644 --- a/skin/member/basic/register_form.skin.php +++ b/skin/member/basic/register_form.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); add_javascript('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -57,11 +57,11 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] $desc_name = ' 본인확인 시 자동입력'; $desc_phone = ' 본인확인 시 자동입력'; - if (!$config['cf_cert_sa'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { + if (!$config['cf_cert_simple'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { $desc_phone = ''; } - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo ''.PHP_EOL; } if($config['cf_cert_hp']) @@ -76,7 +76,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
  • - + class="frm_input full_input " maxlength="20" placeholder="휴대폰번호"> - + @@ -305,7 +305,7 @@ $(function() { $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=register"; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/skin/social/social_register_member.skin.php b/skin/social/social_register_member.skin.php index be1a6b226..b5363e79c 100644 --- a/skin/social/social_register_member.skin.php +++ b/skin/social/social_register_member.skin.php @@ -11,7 +11,7 @@ add_stylesheet('', 13); add_javascript('', 10); add_javascript('', 14); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 15); $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다.다른 이메일을 입력해 주세요.' : ''; @@ -83,9 +83,9 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다. - + - + @@ -97,7 +97,7 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다.
  • 간편인증'.PHP_EOL; } if ($config['cf_cert_hp']) @@ -211,7 +211,7 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다. $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=register"; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/theme/basic/mobile/skin/member/basic/member_cert_refresh.skin.php b/theme/basic/mobile/skin/member/basic/member_cert_refresh.skin.php index 24ba1bb6b..19e6d5686 100644 --- a/theme/basic/mobile/skin/member/basic/member_cert_refresh.skin.php +++ b/theme/basic/mobile/skin/member/basic/member_cert_refresh.skin.php @@ -3,7 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -57,7 +57,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] '; - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo '' . PHP_EOL; } if ($config['cf_cert_hp']) @@ -77,7 +77,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] var pageTypeParam = "pageType=register"; var f = document.fcertrefreshform; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/theme/basic/mobile/skin/member/basic/password_lost.skin.php b/theme/basic/mobile/skin/member/basic/password_lost.skin.php index dce740ac2..97fc852cb 100644 --- a/theme/basic/mobile/skin/member/basic/password_lost.skin.php +++ b/theme/basic/mobile/skin/member/basic/password_lost.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> +if($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> @@ -32,7 +32,7 @@ if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] |

    본인인증으로 찾기

    - + @@ -50,8 +50,8 @@ $(function() { $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=find"; - - // TOSS 통합인증 + + // TOSS 간편인증 var url = "/ini_request.php"; var type = ""; var params = ""; diff --git a/theme/basic/mobile/skin/member/basic/register_form.skin.php b/theme/basic/mobile/skin/member/basic/register_form.skin.php index 2f2a38ede..ed02a5999 100644 --- a/theme/basic/mobile/skin/member/basic/register_form.skin.php +++ b/theme/basic/mobile/skin/member/basic/register_form.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); add_javascript('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -51,11 +51,11 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] $desc_name = ' - 본인확인 시 자동입력'; $desc_phone = ' - 본인확인 시 자동입력'; - if (!$config['cf_cert_sa'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { + if (!$config['cf_cert_simple'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { $desc_phone = ''; } - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo ''.PHP_EOL; } if ($config['cf_cert_hp']) @@ -70,7 +70,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] - +
  • class="frm_input full_input " maxlength="20" placeholder="휴대폰번호 (필수)"> - + @@ -292,7 +292,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=register"; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; @@ -358,7 +358,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] var type; switch(val) { - case "sa": + case "simple": type = "간편인증"; break; case "ipin": diff --git a/theme/basic/skin/member/basic/member_cert_refresh.skin.php b/theme/basic/skin/member/basic/member_cert_refresh.skin.php index 8b5559ede..6ed192978 100644 --- a/theme/basic/skin/member/basic/member_cert_refresh.skin.php +++ b/theme/basic/skin/member/basic/member_cert_refresh.skin.php @@ -3,7 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -53,7 +53,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] '; - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo '' . PHP_EOL; } if ($config['cf_cert_hp']) @@ -73,7 +73,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] var pageTypeParam = "pageType=register"; var f = document.fcertrefreshform; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = ""; diff --git a/theme/basic/skin/member/basic/password_lost.skin.php b/theme/basic/skin/member/basic/password_lost.skin.php index dce740ac2..97fc852cb 100644 --- a/theme/basic/skin/member/basic/password_lost.skin.php +++ b/theme/basic/skin/member/basic/password_lost.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); -if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> +if($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) { ?> @@ -32,7 +32,7 @@ if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] |

    본인인증으로 찾기

    - + @@ -50,8 +50,8 @@ $(function() { $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=find"; - - // TOSS 통합인증 + + // TOSS 간편인증 var url = "/ini_request.php"; var type = ""; var params = ""; diff --git a/theme/basic/skin/member/basic/register_form.skin.php b/theme/basic/skin/member/basic/register_form.skin.php index 15d854f4a..d7af6bce4 100644 --- a/theme/basic/skin/member/basic/register_form.skin.php +++ b/theme/basic/skin/member/basic/register_form.skin.php @@ -4,7 +4,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 // add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); add_javascript('', 0); -if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) +if ($config['cf_cert_use'] && ($config['cf_cert_simple'] || $config['cf_cert_ipin'] || $config['cf_cert_hp'])) add_javascript('', 0); ?> @@ -57,11 +57,11 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] $desc_name = ' 본인확인 시 자동입력'; $desc_phone = ' 본인확인 시 자동입력'; - if (!$config['cf_cert_sa'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { + if (!$config['cf_cert_simple'] && !$config['cf_cert_hp'] && $config['cf_cert_ipin']) { $desc_phone = ''; } - if ($config['cf_cert_sa']) { + if ($config['cf_cert_simple']) { echo ''.PHP_EOL; } if ($config['cf_cert_hp']) @@ -76,7 +76,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
  • - + class="frm_input full_input " maxlength="20" placeholder="휴대폰번호"> - + @@ -305,7 +305,7 @@ $(function() { $("#reg_zip_find").css("display", "inline-block"); var pageTypeParam = "pageType=register"; - + // 이니시스 간편인증 var url = "/ini_request.php"; var type = "";