diff --git a/.gitignore b/.gitignore index 334e9da7e..9ea483ecd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ !.gitignore +.htaccess data/ test/ sirgle/ diff --git a/mobile/index.php b/mobile/index.php index 2359ac1ee..514a3223e 100644 --- a/mobile/index.php +++ b/mobile/index.php @@ -7,7 +7,7 @@ include_once(G5_MOBILE_PATH.'/_head.php'); 'pc' order by gr_id, bo_table "; +$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' order by b.gr_order, a.bo_order "; $result = sql_query($sql); for ($i=0; $row=sql_fetch_array($result); $i++) { // 이 함수가 바로 최신글을 추출하는 역할을 합니다.