반응형

그누보드의 경우에는 글을 이동하거나 혹은 복사시에는 최근글로 등록이 안된다. 먼저 최근글로 등록이 되게 하려면 move_update.php파일의 총 두부분을 수정을 해주면 된다. 어떻게 수정을 하는지 아래에서 만나보자. 참고로 move_update.php파일은 bbs폴더에 위치하고 있다.

 

복사글도 노출되게 수정방법 TIP

가장 중요한부분도 있는데

wr_datetime = '{$row2['wr_datetime']}',

이부분을

wr_datetime = '".G5_TIME_YMDHIS."',

이걸로 교체를 먼저 선행해야 한다. 이건 글을 이동이나 복사시에 현재 날짜기준으로 업데이트 하라는 명령어다.. 그후에는

 

 

   if ($sw == 'move' && $i == 0)
                {
                    // 스크랩 이동
                    sql_query(" update {$g5['scrap_table']} set bo_table = '$move_bo_table', wr_id = '$save_parent' where bo_table = '$bo_table' and wr_id = '{$row2['wr_id']}' ");
                    // 최신글 이동
                    /*
                    sql_query(" update {$g5['board_new_table']} set bo_table = '$move_bo_table', wr_id = '$save_parent', wr_parent = '$save_parent' where bo_table = '$bo_table' and wr_id = '{$row2['wr_id']}' ");
                    */
                    // 추천데이터 이동
                    sql_query(" update {$g5['board_good_table']} set bo_table = '$move_bo_table', wr_id = '$save_parent' where bo_table = '$bo_table' and wr_id = '{$row2['wr_id']}' ");
                }
                sql_query(" insert into {$g5['board_new_table']} ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( '{$move_bo_table}', '{$insert_id}', '{$save_parent}', '".G5_TIME_YMDHIS."', '{$row2['mb_id']}' ) ");

 move_update.php를 올려보게 되면 위와 같은 문구가 있을것이다.

 

ql_query(" update {$g5['board_new_table']} set bo_table = '$move_bo_table', wr_id = '$save_parent', wr_parent = '$save_parent' where bo_table = '$bo_table' and wr_id = '{$row2['wr_id']}' ");

위에 문구를 있는데 이부분을 모두 주석처리를 한후에

 

sql_query(" insert into {$g5['board_new_table']} ( bo_table, wr_id, wr_parent, bn_datetime, mb_id ) values ( '{$move_bo_table}', '{$insert_id}', '{$save_parent}', '".G5_TIME_YMDHIS."', '{$row2['mb_id']}' ) ");

이렇게 교체를 해주면 된다. 그럼 유익하게 사용하기 바란다.

728x90
반응형

댓글()