Merge branch 'g5'

This commit is contained in:
chicpro
2014-01-14 17:19:39 +09:00
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
!.gitignore
.htaccess
data/
test/
sirgle/

View File

@ -7,7 +7,7 @@ include_once(G5_MOBILE_PATH.'/_head.php');
<!-- 메인화면 최신글 시작 -->
<?php
// 최신글
$sql = " select bo_table from {$g5['board_table']} where bo_device <> '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++) {
// 이 함수가 바로 최신글을 추출하는 역할을 합니다.