From 7bb291664ccf9ba6f39967e4e2efa0fd9100d7da Mon Sep 17 00:00:00 2001 From: lanzongjun Date: Mon, 14 Nov 2022 14:44:00 +0800 Subject: [PATCH] * finish task #75904 --- module/story/control.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/story/control.php b/module/story/control.php index e873a3420d..6cffa44848 100755 --- a/module/story/control.php +++ b/module/story/control.php @@ -2244,7 +2244,8 @@ class story extends control $this->view->story = $story; $this->view->storyType = $storyType; $this->view->actions = $this->action->getList('story', $storyID); - $this->view->users = ($this->config->vision == 'lite' || !empty($product->shadow)) ? $this->loadModel('user')->getTeamMemberPairs($this->session->project) : $this->loadModel('user')->getPairs('nodeleted|noclosed|pofirst|noletter'); + $this->view->users = $this->config->vision == 'lite' ? $this->loadModel('user')->getTeamMemberPairs($this->session->project) : $this->loadModel('user')->getPairs('nodeleted|noclosed|pofirst|noletter'); + $this->display(); }