From 79068a28c128fb9aa063c031f483f922f071a939 Mon Sep 17 00:00:00 2001 From: wyn <1074145239@qq.com> Date: Mon, 20 Jul 2026 16:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=82=E8=80=83=E6=96=87=E7=8C=AE=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common/ReferenceRelevanceCheckService.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/common/ReferenceRelevanceCheckService.php b/application/common/ReferenceRelevanceCheckService.php index 02bae704..b3eb1abe 100644 --- a/application/common/ReferenceRelevanceCheckService.php +++ b/application/common/ReferenceRelevanceCheckService.php @@ -2482,11 +2482,11 @@ class ReferenceRelevanceCheckService ->where('p_article_id', $pArticleId) ->delete(); - if ($articleId > 0 && $this->hasAmRefCheckStatusColumn()) { + if ($articleId > 0) { Db::name('article_main') ->where('article_id', $articleId) ->whereIn('state', [0, 2]) - ->update(['ref_check_status' => self::AM_STATUS_NONE]); + ->update(['ref_check_status' => self::ARTICLE_PROGRESS_NONE]); } return intval($deleted);