From d046d0a2f88699118fd8e306895c83bfd39e77eb Mon Sep 17 00:00:00 2001 From: holan20180123 <56391770@qq.com> Date: Fri, 2 Apr 2021 14:33:26 +0800 Subject: [PATCH] * Fix bug #11770. --- module/my/control.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/module/my/control.php b/module/my/control.php index 80a612cae2..6592fe7285 100644 --- a/module/my/control.php +++ b/module/my/control.php @@ -588,6 +588,8 @@ class my extends control $this->app->loadClass('pager', $static = true); $pager = new pager($recTotal, $recPerPage, $pageID); + $this->app->session->set('issueList', $this->app->getURI(true), 'project'); + $this->view->title = $this->lang->my->issue; $this->view->position[] = $this->lang->my->issue; $this->view->mode = 'issue'; @@ -616,6 +618,8 @@ class my extends control $this->app->loadClass('pager', $static = true); $pager = new pager($recTotal, $recPerPage, $pageID); + $this->app->session->set('riskList', $this->app->getURI(true), 'project'); + $this->view->title = $this->lang->my->risk; $this->view->position[] = $this->lang->my->risk; $this->view->risks = $this->loadModel('risk')->getUserRisks($type, $this->app->user->account, $orderBy, $pager);