회원 로그인 체크 페이지에 event hook 추가

This commit is contained in:
thisgun
2020-11-02 12:01:10 +09:00
parent c0a92fdf0f
commit 26a8d29b38

View File

@ -6,6 +6,8 @@ $g5['title'] = "로그인 검사";
$mb_id = trim($_POST['mb_id']);
$mb_password = trim($_POST['mb_password']);
run_event('member_login_check_before', $mb_id);
if (!$mb_id || !$mb_password)
alert('회원아이디나 비밀번호가 공백이면 안됩니다.');