From d9aa817221e1cc701b81399b2a98c76792e5b8c4 Mon Sep 17 00:00:00 2001 From: chicpro Date: Mon, 24 Mar 2014 14:50:04 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B8=EC=A6=9D=EC=9D=84=20=EC=82=AC?= =?UTF-8?q?=EC=9A=A9=ED=95=98=EB=8A=94=20=EA=B2=8C=EC=8B=9C=ED=8C=90?= =?UTF-8?q?=EC=9D=98=20=EC=B5=9C=EC=8B=A0=EA=B8=80=EC=9D=84=20=EC=B6=94?= =?UTF-8?q?=EC=B6=9C=ED=95=98=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/group.php | 8 +++++++- index.php | 6 +++++- mobile/group.php | 8 +++++++- mobile/index.php | 6 +++++- 4 files changed, 24 insertions(+), 4 deletions(-) diff --git a/bbs/group.php b/bbs/group.php index e0fb16730..833155aac 100644 --- a/bbs/group.php +++ b/bbs/group.php @@ -18,7 +18,13 @@ include_once('./_head.php'); 'mobile' order by bo_order "; +$sql = " select bo_table, bo_subject + from {$g5[board_table]} + where gr_id = '{$gr_id}' + and bo_list_level <= '{$member[mb_level]}' + and bo_device <> 'mobile' + and bo_use_cert = '' + order by bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { $lt_style = ""; diff --git a/index.php b/index.php index 32e563fe8..fb648761e 100644 --- a/index.php +++ b/index.php @@ -22,7 +22,11 @@ include_once('./_head.php'); 'mobile' order by b.gr_order, a.bo_order "; +$sql = " select bo_table + from `{$g5['board_table']}` a left join `{$g5['group_table']}` b on (a.gr_id=b.gr_id) + where a.bo_device <> 'mobile' + and a.bo_use_cert = '' + order by b.gr_order, a.bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { if ($i%2==1) $lt_style = "margin-left:20px"; diff --git a/mobile/group.php b/mobile/group.php index 6cb3aaee7..9ad4d6e51 100644 --- a/mobile/group.php +++ b/mobile/group.php @@ -10,7 +10,13 @@ include_once(G5_MOBILE_PATH.'/_head.php'); 'pc' order by bo_table "; +$sql = " select bo_table, bo_subject + from {$g5[board_table]} + where gr_id = '{$gr_id}' + and bo_list_level <= '{$member[mb_level]}' + and bo_device <> 'pc' + and bo_use_cert = '' + order by bo_table "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { // 이 함수가 바로 최신글을 추출하는 역할을 합니다. diff --git a/mobile/index.php b/mobile/index.php index 514a3223e..412e66457 100644 --- a/mobile/index.php +++ b/mobile/index.php @@ -7,7 +7,11 @@ include_once(G5_MOBILE_PATH.'/_head.php'); 'pc' order by b.gr_order, a.bo_order "; +$sql = " select bo_table + from `{$g5['board_table']}` a left join `{$g5['group_table']}` b on (a.gr_id=b.gr_id) + where a.bo_device <> 'pc' + and a.bo_use_cert = '' + order by b.gr_order, a.bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { // 이 함수가 바로 최신글을 추출하는 역할을 합니다.