diff --git a/bbs/move.php b/bbs/move.php index 086d80c8a..99cf3b95e 100644 --- a/bbs/move.php +++ b/bbs/move.php @@ -26,11 +26,10 @@ else { } } -$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}' "; if ($is_admin == 'group') $sql .= " and b.gr_admin = '$member[mb_id]' "; else if ($is_admin == 'board') diff --git a/skin/board/neo/list.skin.php b/skin/board/neo/list.skin.php index 58a7d40dc..c4b3de7e4 100644 --- a/skin/board/neo/list.skin.php +++ b/skin/board/neo/list.skin.php @@ -214,7 +214,7 @@ function select_delete() { function select_copy(sw) { var f = document.fboardlist; - if (sw == "copy") + if (sw == 'copy') str = "복사"; else str = "이동";