자동등록방지
본문
비회원이 글작성시 자동등록방지에 아무숫자나 글이나 입력해도 글이등록되는데 왜그런가요?
해당 skin의 write.skin.php와
bbs/write_comment_update.php에 아래와 같이 모두 자동등록방지 소스가 들어가있는데말이에요.ㅠ
<?php if ($is_guest) { //자동등록방지 ?>
<tr>
<th scope="row">자동등록방지</th>
<td>
<?php echo $captcha_html ?>
</td>
</tr>
<?php } ?>
bbs/write_comment_update.php
// 비회원의 경우 이름이 누락되는 경우가 있음
if ($is_guest) {
if ($wr_name == '')
alert('이름은 필히 입력하셔야 합니다.');
if(!chk_captcha())
alert('자동등록방지 숫자가 틀렸습니다.');
}
if ($w == "c" || $w == "cu") {
if ($member['mb_level'] < $board['bo_comment_level'])
alert('댓글을 쓸 권한이 없습니다.');
}
else
alert('w 값이 제대로 넘어오지 않았습니다.');
답변 1
write_comment_update.php 파일은 코멘트만 해당됩니다.
write_update.php 파일에 아래 코드가 있는지 확인해보세요
if ($is_guest && !chk_captcha()) {
alert('자동등록방지 숫자가 틀렸습니다.');
}
답변을 작성하시기 전에 로그인 해주세요.