From 04d8d9b704aaf3ead490d53d1af6bd27611d2b5e Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 20 Jul 2015 10:27:52 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B4=EB=A9=94=EC=9D=BC=20=EC=9E=AC?= =?UTF-8?q?=EC=9D=B8=EC=A6=9D=20=EC=A0=95=EB=B3=B4=20=EB=A1=9C=EB=93=9C=20?= =?UTF-8?q?=EC=BD=94=EB=93=9C=20=EC=9C=84=EC=B9=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/register_email.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bbs/register_email.php b/bbs/register_email.php index 4345d4eea..4d3e44d79 100644 --- a/bbs/register_email.php +++ b/bbs/register_email.php @@ -2,14 +2,15 @@ include_once('./_common.php'); include_once(G5_CAPTCHA_PATH.'/captcha.lib.php'); +$g5['title'] = '메일인증 메일주소 변경'; +include_once('./_head.php'); + +$mb_id = substr(clean_xss_tags($_GET['mb_id']), 0, 20); $sql = " select mb_email, mb_datetime, mb_email_certify from {$g5['member_table']} where mb_id = '{$mb_id}' "; $mb = sql_fetch($sql); if (substr($mb['mb_email_certify'],0,1)!=0) { alert("이미 메일인증 하신 회원입니다.", G5_URL); } - -$g5['title'] = '메일인증 메일주소 변경'; -include_once('./_head.php'); ?>

메일인증을 받지 못한 경우 회원정보의 메일주소를 변경 할 수 있습니다.