공지를 다른 분류에서도 보이게 하기는 했으나
본문
위 사진처럼 전체글 빼고 나머지 분류들이 다 저렇게 나옵니다. 번호 어떻게 해야 하죠..
답변 1
임시적이지만 해결했습니다. list.php의 공지 처리를
// 공지 처리
//if (!$sca && !$stx) {
//}
위처럼 주석처리하고 아래로 내리다 보면
if($page_rows > 0) {
$result = sql_query($sql);
$k = 0;
while ($row = sql_fetch_array($result))
{
// 검색일 경우 wr_id만 얻었으므로 다시 한행을 얻는다
if ($sca || $stx)
$row = sql_fetch(" select * from {$write_table} where wr_id = '{$row['wr_parent']}' ");
$list[$i] = get_list($row, $board, $board_skin_url, G5_IS_MOBILE ? $board['bo_mobile_subject_len'] : $board['bo_subject_len']);
if (strstr($sfl, 'subject')) {
$list[$i]['subject'] = search_font($stx, $list[$i]['subject']);
}
$list[$i]['is_notice'] = false;
if($sca == '질문') $list_num = $total_count - $k;
else if($sca == '자유') $list_num = $total_count - $k;
else $list_num = $total_count - $notice_count;
$list[$i]['num'] = $list_num;
$i++;
$k++;
$notice_count++;
}
}
빨간색처럼 질문,자유에 본인 게시판에 맞는 분류를 넣어 주시면 됩니다.
!-->!-->
답변을 작성하시기 전에 로그인 해주세요.