php warning 메시지 코드 수정

This commit is contained in:
thisgun
2025-09-22 11:05:39 +09:00
parent 1438f8d557
commit 887833089b
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ if ($is_admin != 'super') {
}
$mb = get_member($mb_id);
if (!$mb['mb_id']) {
if (!(isset($mb['mb_id']) && $mb['mb_id'])) {
alert('존재하는 회원아이디가 아닙니다.');
}