분류(카테고리) 선택시 공지사항 보이기 정보
분류(카테고리) 선택시 공지사항 보이기본문
분류별 공지내용 보일때 유용하겠네요.
list.php의 아래 부분을 찾아서
if (!$sca && !$stx)
{
$arr_notice = split("\n", trim($board[bo_notice]));
for ($k=0; $k<count($arr_notice); $k++)
{
if (trim($arr_notice[$k])=='') continue;
$row = sql_fetch(" select * from $write_table where wr_id = '$arr_notice[$k]' ");
if (!$row[wr_id]) continue;
$list[$i] = get_list($row, $board, $board_skin_path, $board[bo_subject_len]);
$list[$i][is_notice] = true;
$i++;
}
}
밑에 아래 부분을 추가하였습니다.
else if ($sca && !$stx) {
$arr_notice = split("\n", trim($board[bo_notice]));
for ($k=0; $k<count($arr_notice); $k++)
{
if (trim($arr_notice[$k])=='') continue;
$row = sql_fetch(" select * from $write_table where wr_id = '$arr_notice[$k]' and ca_name = '$sca' ");
if (!$row[wr_id]) continue;
$list[$i] = get_list($row, $board, $board_skin_path, $board[bo_subject_len]);
$list[$i][is_notice] = true;
$i++;
}
}
검색시에는 안나타나고 분류 선택시 해당 분류의 공지사항이 나타나게 하였습니다.
4
댓글 3개
