From d797819821900ca328345b5a186ee5859789e654 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Sat, 4 Mar 2006 22:38:51 +0000 Subject: [PATCH] - #52403: Comment order messed up on update. --- database/updates.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/updates.inc b/database/updates.inc index ddf3c4500843..f3936818cf6d 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -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, '/')); -- GitLab