diff --git a/bbs/group.php b/bbs/group.php index 833155aac..6b0ed8441 100644 --- a/bbs/group.php +++ b/bbs/group.php @@ -22,9 +22,10 @@ $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 "; + and bo_device <> 'mobile' "; +if(!$is_admin) + $sql .= " and bo_use_cert = '' "; +$sql .= " 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 6745e19ed..8894add16 100644 --- a/index.php +++ b/index.php @@ -30,9 +30,10 @@ include_once('./_head.php'); // 최신글 $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 "; + where a.bo_device <> 'mobile' "; +if(!$is_admin) + $sql .= " and a.bo_use_cert = '' "; +$sql .= " 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 9ad4d6e51..1c76c69fb 100644 --- a/mobile/group.php +++ b/mobile/group.php @@ -14,9 +14,10 @@ $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 "; + and bo_device <> 'pc' "; +if(!$is_admin) + $sql .= " and bo_use_cert = '' "; +$sql .= " 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 412e66457..541213c26 100644 --- a/mobile/index.php +++ b/mobile/index.php @@ -9,9 +9,10 @@ include_once(G5_MOBILE_PATH.'/_head.php'); // 최신글 $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 "; + where a.bo_device <> 'pc' "; +if(!$is_admin) + $sql .= " and a.bo_use_cert = '' "; +$sql .= " order by b.gr_order, a.bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { // 이 함수가 바로 최신글을 추출하는 역할을 합니다.