diff --git a/adm/config_form.php b/adm/config_form.php
index 2ba3b9627..c77d4f848 100644
--- a/adm/config_form.php
+++ b/adm/config_form.php
@@ -858,11 +858,11 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) {
- |
+ |
|
@@ -887,7 +887,7 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) {
- |
+ |
MID
SRA
@@ -931,7 +931,7 @@ if ($config['cf_sms_use'] && $config['cf_icode_id'] && $config['cf_icode_pw']) {
|
|
- 아이핀/휴대폰/통합인증에서 개별 적용됩니다.)'); ?>
+ 아이핀/휴대폰/간편인증에서 개별 적용됩니다.)'); ?>
회
|
@@ -1430,7 +1430,7 @@ $(function(){
$("#cf_cert_find").on("click", function() {
if($(this).attr("checked")) {
- let flag = confirm("휴대폰/아이핀 본인확인을 이용하시다가 통합인증을 이용하시는 경우, 기존 회원은 아이디/비밀번호 찾기에 사용할 수 없을 수 있습니다.\n\n그래도 사용하시겠습니까?");
+ let flag = confirm("휴대폰/아이핀 본인확인을 이용하시다가 간편인증을 이용하시는 경우, 기존 회원은 아이디/비밀번호 찾기에 사용할 수 없을 수 있습니다.\n\n그래도 사용하시겠습니까?");
$(this).attr("checked", flag);
};
});
diff --git a/adm/config_form_update.php b/adm/config_form_update.php
index 796a19829..7c6023aef 100644
--- a/adm/config_form_update.php
+++ b/adm/config_form_update.php
@@ -174,7 +174,7 @@ foreach( $check_keys as $k => $v ){
// 본인확인을 사용할 경우 아이핀, 휴대폰인증 중 하나는 선택되어야 함
if($_POST['cf_cert_use'] && !$_POST['cf_cert_ipin'] && !$_POST['cf_cert_hp'] && !$_POST['cf_cert_sa'])
- alert('본인확인을 위해 아이핀, 휴대폰 본인확인, KG이니시스 통합인증 서비스 중 하나이상 선택해 주십시오');
+ alert('본인확인을 위해 아이핀, 휴대폰 본인확인, KG이니시스 간편인증 서비스 중 하나 이상 선택해 주십시오.');
if(!$_POST['cf_cert_use']) {
$posts[$key] = $_POST['cf_cert_ipin'] = '';
diff --git a/adm/member_form.php b/adm/member_form.php
index 3ab2545ab..78d24862c 100644
--- a/adm/member_form.php
+++ b/adm/member_form.php
@@ -97,7 +97,7 @@ else
// 본인확인방법
switch($mb['mb_certify']) {
case 'sa':
- $mb_certify_case = '통합인증';
+ $mb_certify_case = '간편인증';
$mb_certify_val = 'sa';
break;
case 'hp':
@@ -260,7 +260,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
본인확인방법 |
>
-
+
>
>
@@ -377,7 +377,7 @@ add_javascript(G5_POSTCODE_JS, 0); //다음 주소 js
$cnt++;
switch($row['ch_type']){
case 'sa':
- $cert_type = '통합인증';
+ $cert_type = '간편인증';
break;
case 'hp':
$cert_type = '휴대폰';
diff --git a/adm/member_list.php b/adm/member_list.php
index b40fbb32b..5acd59faf 100644
--- a/adm/member_list.php
+++ b/adm/member_list.php
@@ -195,7 +195,7 @@ $colspan = 16;
$mb_certify_val = '';
break;
case 'sa':
- $mb_certify_case = '통합인증';
+ $mb_certify_case = '간편인증';
$mb_certify_val = '';
break;
case 'admin':
@@ -241,7 +241,7 @@ $colspan = 16;
|
>
-
+
>
>
diff --git a/bbs/member_cert_refresh_update.php b/bbs/member_cert_refresh_update.php
index 4d4061f9e..a9b7f018b 100644
--- a/bbs/member_cert_refresh_update.php
+++ b/bbs/member_cert_refresh_update.php
@@ -44,7 +44,7 @@ if ($config['cf_cert_use'] && $cert_type && $md5_cert_no) {
$sql_certify .= " , mb_sex = '".get_session+('ss_cert_sex')."' ";
$sql_certify .= " , mb_dupinfo = '".get_session('ss_cert_dupinfo')."' ";
$sql_certify .= " , mb_name = '{$mb_name}' ";
- } 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포함
$sql_certify .= " mb_hp = '{$mb_hp}' ";
$sql_certify .= " , mb_certify = '{$cert_type}' ";
$sql_certify .= " , mb_adult = '".get_session('ss_cert_adult')."' ";
diff --git a/bbs/register_form_update.php b/bbs/register_form_update.php
index 8955520dd..fcd01fd96 100644
--- a/bbs/register_form_update.php
+++ b/bbs/register_form_update.php
@@ -185,7 +185,7 @@ if ($config['cf_cert_use'] && $cert_type && $md5_cert_no) {
$sql_certify .= " , mb_dupinfo = '".get_session('ss_cert_dupinfo')."' ";
if($w == 'u')
$sql_certify .= " , mb_name = '{$mb_name}' ";
- } 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포함
$sql_certify .= " , mb_hp = '{$mb_hp}' ";
$sql_certify .= " , mb_certify = '{$cert_type}' ";
$sql_certify .= " , mb_adult = '".get_session('ss_cert_adult')."' ";
diff --git a/js/certify.js b/js/certify.js
index 7401a7cd8..31c4a5de0 100644
--- a/js/certify.js
+++ b/js/certify.js
@@ -99,7 +99,7 @@ function cert_confirm() {
switch(val) {
case "sa":
- type = "통합인증";
+ type = "간편인증";
break;
case "ipin":
type = "아이핀";
diff --git a/lib/common.lib.php b/lib/common.lib.php
index c88d5dbc4..40cd14f6f 100644
--- a/lib/common.lib.php
+++ b/lib/common.lib.php
@@ -2824,7 +2824,7 @@ function certify_count_check($mb_id, $type)
switch($type) {
case 'sa' :
- $cert = '통합인증';
+ $cert = '간편인증';
break;
case 'hp':
$cert = '휴대폰';
diff --git a/mobile/skin/member/basic/member_cert_refresh.skin.php b/mobile/skin/member/basic/member_cert_refresh.skin.php
index 8ff6aae92..1a6945f6e 100644
--- a/mobile/skin/member/basic/member_cert_refresh.skin.php
+++ b/mobile/skin/member/basic/member_cert_refresh.skin.php
@@ -58,7 +58,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
if ($config['cf_cert_use']) {
echo '';
if ($config['cf_cert_sa']) {
- echo '' . PHP_EOL;
+ echo '' . PHP_EOL;
}
echo ' ';
echo '';
@@ -80,7 +80,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
var f = document.fcertrefreshform;
- // 이니시스 통합인증
+ // 이니시스 간편인증
var url = "/ini_request.php";
var type = "";
var params = "";
diff --git a/mobile/skin/member/basic/password_lost.skin.php b/mobile/skin/member/basic/password_lost.skin.php
index 939e983b1..cca89e7bc 100644
--- a/mobile/skin/member/basic/password_lost.skin.php
+++ b/mobile/skin/member/basic/password_lost.skin.php
@@ -33,7 +33,7 @@ if($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin'] |
본인인증으로 찾기
-
+
diff --git a/mobile/skin/member/basic/register_form.skin.php b/mobile/skin/member/basic/register_form.skin.php
index 2eddfe56a..bb73190b7 100644
--- a/mobile/skin/member/basic/register_form.skin.php
+++ b/mobile/skin/member/basic/register_form.skin.php
@@ -71,7 +71,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
if ($config['cf_cert_use'] && $member['mb_certify']) {
switch ($member['mb_certify']) {
case "sa":
- $mb_cert = "통합인증";
+ $mb_cert = "간편인증";
break;
case "ipin":
$mb_cert = "아이핀";
@@ -294,7 +294,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
var pageTypeParam = "pageType=register";
- // 이니시스 통합인증
+ // 이니시스 간편인증
var url = "/ini_request.php";
var type = "";
var params = "";
@@ -360,7 +360,7 @@ if ($config['cf_cert_use'] && ($config['cf_cert_sa'] || $config['cf_cert_ipin']
switch(val) {
case "sa":
- type = "통합인증";
+ type = "간편인증";
break;
case "ipin":
type = "아이핀";
diff --git a/mobile/skin/social/social_register_member.skin.php b/mobile/skin/social/social_register_member.skin.php
index 9e6007696..7d7074f57 100644
--- a/mobile/skin/social/social_register_member.skin.php
+++ b/mobile/skin/social/social_register_member.skin.php
@@ -211,7 +211,7 @@ $email_msg = $is_exists_email ? '등록할 이메일이 중복되었습니다.
var pageTypeParam = "pageType=register";
- // 이니시스 통합인증
+ // 이니시스 간편인증
var url = "/ini_request.php";
var type = "";
var params = "";
diff --git a/plugin/inicert/ini_find_result.php b/plugin/inicert/ini_find_result.php
index 420c57bd9..fe7bea811 100644
--- a/plugin/inicert/ini_find_result.php
+++ b/plugin/inicert/ini_find_result.php
@@ -61,7 +61,7 @@ if ($_POST["resultCode"] === "0000") {
exit;
}
-$g5['title'] = 'KG이니시스 통합인증 결과';
+$g5['title'] = 'KG이니시스 간편인증 결과';
include_once(G5_PATH.'/head.sub.php');
?>
|