From 53a74eccd3f00659c0110d70d6249b20d60ac3c4 Mon Sep 17 00:00:00 2001 From: tianshujie98 Date: Tue, 1 Dec 2020 15:51:22 +0800 Subject: [PATCH] * Fix bug #3666. --- module/story/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/story/model.php b/module/story/model.php index a589c95dff..9757e85329 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -1176,6 +1176,7 @@ class storyModel extends model $story->reviewedDate = $date; $story->lastEditedBy = $this->app->user->account; $story->lastEditedDate = $now; + $story->reviewedBy = $this->app->user->account; if($result == 'pass') $story->status = 'active'; if($reason == 'done') $story->stage = 'released'; if($result == 'reject')