From cea7d733f5680a6343a41adca8f31eeff06e5e79 Mon Sep 17 00:00:00 2001 From: Yagami <976204163@qq.com> Date: Mon, 12 Jul 2021 16:27:54 +0800 Subject: [PATCH] * Fix details. --- module/story/model.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module/story/model.php b/module/story/model.php index 7d7c665d16..9b3143ad49 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -3437,10 +3437,10 @@ class storyModel extends model { $story->children[$storyID]->reviewer = array_keys($reviewerList); $story->children[$storyID]->notReview = array(); - } - foreach($reviewerList as $reviewer => $reviewInfo) - { - if($reviewInfo->result == '') $story->children[$storyID]->notReview[] = $reviewer; + foreach($reviewerList as $reviewer => $reviewInfo) + { + if($reviewInfo->result == '') $story->children[$storyID]->notReview[] = $reviewer; + } } } }