PHP8 버전 대응 코드 수정

This commit is contained in:
thisgun
2021-03-16 11:01:52 +09:00
parent 9367862f4b
commit 9e0fc19c0d
2 changed files with 4 additions and 4 deletions

View File

@ -129,7 +129,7 @@ if ($xpay->TX()) {
if($mb_dupinfo) {
$sql = " select mb_id from {$g5['member_table']} where mb_id <> '{$member['mb_id']}' and mb_dupinfo = '{$mb_dupinfo}' ";
$row = sql_fetch($sql);
if ($row['mb_id']) {
if (isset($row['mb_id']) && $row['mb_id']) {
alert_close("입력하신 본인확인 정보로 가입된 내역이 존재합니다.\\n회원아이디 : ".$row['mb_id']);
}
}