그누보드

그누보드 - 회원아이디(코), 글쓴이(코) 댓글만 검색하기

마르스컴퍼니 2022. 11. 7. 19:17

그누보드의 게시판 검색에서,

'회원아이디(코)', '글쓴이(코)' 검색을 하면

댓글만 검색되는 것이 아닌,

게시글도 같이 검색됩니다.

 

댓글 작성자(아이디/글쓴이)만 검색되도록 하고 싶은 경우,

다음과 같이 코드를 수정해주면 됩니다.

 

* /lib/common.lib.php 파일

의 get_sql_search() 함수 마지막 부분 코드를 다음과 같이 변경

if ($not_comment)
    	$str .= " and wr_is_comment = '0' ";

if ($not_comment)
    	$str .= " and wr_is_comment = '0' ";
else if (($tmp[0] == 'mb_id' || $tmp[0] == 'wr_name') && !$not_comment)
    	$str .= " and wr_is_comment = '1' ";
반응형