모바일 그룹에서 게시판 정렬 방법
본문
모바일 그룹에서 게시판 정렬이 뒤죽박죽이어서 고민이었습니다.
$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' order by bo_table ";
mobile/group.php의 위 소스를
아래 소스로 바꾸었습니다.
(bbs/group.php에 있는 소스)
$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' order by bo_order ";
이렇게 했을 때 문제가 되는 부분이 있을까요?
까막눈이라...
답변을 작성하시기 전에 로그인 해주세요.