그누보드 게시판 검색 시 기본 항목을 제목+내용으로 변경
페이지 정보
작성자 최고관리자 작성일 21-10-18 10:39 조회 3,698 댓글 0본문
/lib/get_data.lib.php 파일 수정
function get_board_sfl_select_options($sfl){
global $is_admin;
$str = '';
$str .= '<option value="wr_subject||wr_content" '.get_selected($sfl, 'wr_subject||wr_content', true).'>제목+내용</option>';
$str .= '<option value="wr_subject" '.get_selected($sfl, 'wr_subject').'>제목</option>';
$str .= '<option value="wr_content" '.get_selected($sfl, 'wr_content').'>내용</option>';
if ( $is_admin ){
$str .= '<option value="mb_id,1" '.get_selected($sfl, 'mb_id,1').'>회원아이디</option>';
$str .= '<option value="mb_id,0" '.get_selected($sfl, 'mb_id,0').'>회원아이디(코)</option>';
}
$str .= '<option value="wr_name,1" '.get_selected($sfl, 'wr_name,1').'>글쓴이</option>';
$str .= '<option value="wr_name,0" '.get_selected($sfl, 'wr_name,0').'>글쓴이(코)</option>';
return run_replace('get_board_sfl_select_options', $str, $sfl);
}
댓글목록 0
등록된 댓글이 없습니다.