경로 정리 - 큰일었어요!!!

This commit is contained in:
gnuboard
2013-01-27 15:48:08 +09:00
parent 5891f1a77a
commit 023d9233d2
623 changed files with 822 additions and 7680 deletions

View File

@ -4,7 +4,7 @@ include_once('./_common.php');
$sql = " select mb_id, mb_email, mb_datetime from {$g4[member_table]} where mb_id = '{$mb_id}' ";
$row = sql_fetch($sql);
if (!$row[mb_id])
alert('존재하는 회원이 아닙니다.', $g4['path']);
alert('존재하는 회원이 아닙니다.', G4_PATH);
if ($mb_md5)
{
@ -13,9 +13,9 @@ if ($mb_md5)
{
sql_query(" update {$g4[member_table]} set mb_email_certify = '{$g4[time_ymdhis]}' where mb_id = '{$mb_id}' ");
alert('E-mail 인증 처리를 완료 하였습니다.', $g4['path']);
alert('E-mail 인증 처리를 완료 하였습니다.', G4_PATH);
}
}
alert('제대로 된 값이 넘어오지 않았습니다.', $g4['path']);
alert('제대로 된 값이 넘어오지 않았습니다.', G4_PATH);
?>