- 정보공유
[그누보드팁] 글 정렬을 날짜순으로 했더니 답글 순서가 안맞는경우.
출처 : https://sir.kr/g4_tiptech/12485
그누보드5 버전으로 다시 약간 수정해서 올립니다.
include_once('./_common.php');
$bo_table = 'open_free';
//////////////////////////////////////////////////
if ($is_admin != 'super') die('로그인 해주세요.');
if (!$bo_table) die('bo_table 값이 없습니다.');
$write_table = $g5['write_prefix'].$bo_table;
$data = array();
$sql = "select wr_id, wr_num from {$write_table} where wr_is_comment = 0 and wr_reply = '' order by wr_datetime";
$qry = sql_query($sql);
while ($row = sql_fetch_array($qry)) $data[] = $row;
sql_query("update {$write_table} set wr_num = wr_num * -1");
$wr_num = 0;
foreach ($data as $row) {
$wr_num--;
$row[wr_num] *= -1;
$sql = "update {$write_table} set wr_num = '{$wr_num}' where wr_num = '{$row[wr_num]}'";
sql_query($sql);
}
die('success');