From eb205bf0ea4d526f5e5bdc9453e8852f59fb2baa Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 9 Jun 2025 06:51:00 +0000 Subject: [PATCH] * [bug#63244,done,0.5h] fix bug. --- module/stakeholder/control.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/module/stakeholder/control.php b/module/stakeholder/control.php index 0f916a1ca2..739cd62a49 100644 --- a/module/stakeholder/control.php +++ b/module/stakeholder/control.php @@ -321,11 +321,10 @@ class stakeholder extends control if($stakeholder->objectType == 'project') $this->view->projectID = $stakeholder->objectID; - $this->view->title = $this->lang->stakeholder->common . $this->lang->hyphen . $this->lang->stakeholder->view; - $this->view->user = $stakeholder; - $this->view->users = $this->loadModel('user')->getTeamMemberPairs($this->session->project, 'project', 'nodeleted'); - $this->view->expects = $this->stakeholder->getExpectByUser($stakeholderID); - $this->view->preAndNext = $this->loadModel('common')->getPreAndNextObject('stakeholder', $stakeholderID); + $this->view->title = $this->lang->stakeholder->common . $this->lang->hyphen . $this->lang->stakeholder->view; + $this->view->user = $stakeholder; + $this->view->users = $this->loadModel('user')->getTeamMemberPairs($this->session->project, 'project', 'nodeleted'); + $this->view->expects = $this->stakeholder->getExpectByUser($stakeholderID); $this->display(); }