php warning 메시지 코드 수정

This commit is contained in:
thisgun
2025-04-15 11:20:44 +09:00
parent a05a1403f5
commit df00641290
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ if (isset($_SESSION['ss_mb_reg']))
$mb = get_member($_SESSION['ss_mb_reg']);
// 회원정보가 없다면 초기 페이지로 이동
if (!$mb['mb_id'])
if (!(isset($mb['mb_id']) && $mb['mb_id']))
goto_url(G5_URL);
$g5['title'] = '회원가입 완료';