From d0f93f081dac9218c221613eb87bb5382fcb6df2 Mon Sep 17 00:00:00 2001 From: DiscuzX <153619335@qq.com> Date: Sun, 26 Sep 2021 13:21:54 +0000 Subject: [PATCH] =?UTF-8?q?=E5=B8=96=E5=AD=90=E5=88=86=E8=A1=A8=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- upload/source/admincp/admincp_postsplit.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/upload/source/admincp/admincp_postsplit.php b/upload/source/admincp/admincp_postsplit.php index c9b00260a..0bac3ee5d 100644 --- a/upload/source/admincp/admincp_postsplit.php +++ b/upload/source/admincp/admincp_postsplit.php @@ -221,11 +221,10 @@ if($operation == 'manage') { } else { $count = C::t('forum_post')->count_by_first($fromtableid, 1); if($count) { - //$tids = C::t('forum_post')->fetch_all_tid_by_first($fromtableid, 1, 0, 1000); $threads = C::t('forum_post')->fetch_all_tid_by_first($fromtableid, 1, 0, 1000); $tids = array(); foreach($threads as $thread) { - $tids[] = $thread['tid']; + $tids[$thread['tid']] = $thread['tid']; } movedate($tids); } else { -- Gitee