검색 금지단어 등록 정보
그누호환 검색 금지단어 등록본문
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('금지어입니다.');
도 가능하겠지요..
추천
0
0
댓글 전체
정말 유용하게 사용하고 있습니다. ^^
좋은팁입니다. 감사합니다.