비회원이면서 댓글 비회원쓰기가 만족할 경우에만 캡챠 생성

This commit is contained in:
whitedot
2013-03-06 13:05:54 +09:00
parent 846d97dda7
commit 9e7b78adb6

View File

@ -3,7 +3,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G4_GCAPTCHA_PATH.'/gcaptcha.lib.php');
$captcha_html = "";
if ($is_guest) {
if ($is_guest && $board['bo_comment_level'] < 2) {
$captcha_html = captcha_html('_comment');
}