- #52403: Comment order messed up on update.
parent
650f22bc7f
commit
d797819821
|
@ -1566,7 +1566,7 @@ function system_update_172() {
|
|||
include_once './modules/comment.module';
|
||||
|
||||
$limit = 20;
|
||||
$result = db_query_range("SELECT cid, thread FROM {comments} WHERE cid > %d", $_SESSION['system_update_172'], 0, $limit);
|
||||
$result = db_query_range("SELECT cid, thread FROM {comments} WHERE cid > %d ORDER BY cid ASC", $_SESSION['system_update_172'], 0, $limit);
|
||||
while ($comment = db_fetch_object($result)) {
|
||||
$_SESSION['system_update_172'] = $comment->cid;
|
||||
$thread = explode('.', rtrim($comment->thread, '/'));
|
||||
|
|
Loading…
Reference in New Issue