게시물 이동 및 복사 시 같은 그룹만 보이게 하려면.... 정보
게시물 이동 및 복사 시 같은 그룹만 보이게 하려면....본문
게시물 이동 및 복사 시 전체 그룹이 나오는데..
같은 그룹만 보이게 하려면 어떻게 해야 하나요...
같은 그룹만 보이게 하려면 어떻게 해야 하나요...
댓글 전체
gnu/bbs/move.php 파일수정해 보세요
$sql = " select *
from $g4[board_table] a,
$g4[group_table] b
where a.gr_id = b.gr_id
and bo_table <> '$bo_table' ";
==>
$sql = " select *
from $g4[board_table] a,
$g4[group_table] b
where a.gr_id = b.gr_id
and bo_table <> '$bo_table' and a.gr_id='$board[gr_id]' ";
$sql = " select *
from $g4[board_table] a,
$g4[group_table] b
where a.gr_id = b.gr_id
and bo_table <> '$bo_table' ";
==>
$sql = " select *
from $g4[board_table] a,
$g4[group_table] b
where a.gr_id = b.gr_id
and bo_table <> '$bo_table' and a.gr_id='$board[gr_id]' ";
잘되네요..
감사합니다.
감사합니다.