검색 금지단어 등록
gnu3/bbs/gblist.php 에서 237번째 줄 부근에서 다음과 같이 수정해 주시면 됩니다.
// 검색어가 있다면
if ('' != $stext) {
if (in_array($stext, array('금지어'))) alert('금지어입니다.'); // <-- 요 부분
$sql_search = get_sql_search($sselect, $stext, $soperator);
금지어 추가는 in_array($stext, array('금지어', '금지어2', '금지어3')) 와 같이 해 주시면 되고..
아니면..
$block_search = array('금지어1', '금지어2', '금지어3');
if (in_array($stext, $block_search)) alert('금지어입니다.');
도 가능하겠지요..
// 검색어가 있다면
if ('' != $stext) {
if (in_array($stext, array('금지어'))) alert('금지어입니다.'); // <-- 요 부분
$sql_search = get_sql_search($sselect, $stext, $soperator);
금지어 추가는 in_array($stext, array('금지어', '금지어2', '금지어3')) 와 같이 해 주시면 되고..
아니면..
$block_search = array('금지어1', '금지어2', '금지어3');
if (in_array($stext, $block_search)) alert('금지어입니다.');
도 가능하겠지요..
|
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기
댓글 2개