From 36ebe57f33a7b307bc75c6571a90f25d2aef0a68 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Tue, 10 Oct 2023 10:55:53 +0800 Subject: [PATCH] * Fix bug #39292. --- module/story/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/model.php b/module/story/model.php index 64b8322a21..896a93d7e9 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -6771,7 +6771,7 @@ class storyModel extends model $products = zget($options, 'products', array()); $isShowBranch = zget($options, 'isShowBranch', ''); - $userFields = array('assignedTo', 'openedBy', 'closedBy', 'lastEditedBy', 'feedbackBy'); + $userFields = array('openedBy', 'closedBy', 'lastEditedBy', 'feedbackBy'); $dateFields = array('assignedDate', 'openedDate', 'closedDate', 'lastEditedDate', 'reviewedDate', 'activatedDate'); $executionID = empty($execution) ? $this->session->execution : $execution->id; $showBranch = isset($this->config->product->browse->showBranch) ? $this->config->product->browse->showBranch : 1;