|
|
|
19년 전
|
조회 1,585
|
|
|
|
19년 전
|
조회 1,022
|
|
|
|
19년 전
|
조회 1,550
|
|
|
|
19년 전
|
조회 1,440
|
|
|
|
19년 전
|
조회 2,129
|
|
|
|
19년 전
|
조회 1,548
|
|
|
|
19년 전
|
조회 1,652
|
|
|
|
19년 전
|
조회 1,562
|
|
|
|
19년 전
|
조회 1,529
|
|
|
|
19년 전
|
조회 1,311
|
|
|
|
19년 전
|
조회 1,340
|
|
|
|
19년 전
|
조회 1,530
|
|
|
|
19년 전
|
조회 993
|
|
|
|
19년 전
|
조회 980
|
|
|
|
19년 전
|
조회 2,568
|
|
|
|
19년 전
|
조회 1,166
|
|
|
|
19년 전
|
조회 1,195
|
|
|
|
19년 전
|
조회 1,558
|
|
|
|
19년 전
|
조회 1,088
|
|
|
|
19년 전
|
조회 1,473
|
댓글 2개
수정전 소스 :
if (!($board[bo_use_comment] && $cwin)) {
// 게시물 아이디가 있다면 게시물 보기를 INCLUDE
if ($wr_id)
include_once("./view.php");
// 전체목록보이기 사용이 "예" 또는 wr_id 값이 없다면 목록을 보임
//if ($board[bo_use_list_view] || empty($wr_id))
if ($member[mb_level] >= $board[bo_list_level] && $board[bo_use_list_view] || empty($wr_id))
include_once ("./list.php");
include_once("./board_tail.php");
}
수정후 소스 :
if (!($board[bo_use_comment] && $cwin)) {
// 전체목록보이기 사용이 "예" 또는 wr_id 값이 없다면 목록을 보임
//if ($board[bo_use_list_view] || empty($wr_id))
if ($member[mb_level] >= $board[bo_list_level] && $board[bo_use_list_view] || empty($wr_id))
include_once ("./list.php");
// 게시물 아이디가 있다면 게시물 보기를 INCLUDE
if ($wr_id)
include_once("./view.php");
include_once("./board_tail.php");
}