From a73d28f969089534966da7fda4105f41de47a65c Mon Sep 17 00:00:00 2001 From: qiyu-xie Date: Fri, 18 Jun 2021 08:58:56 +0800 Subject: [PATCH] * Finish task#39387. --- module/action/control.php | 37 ++++++++++++++++++++----------------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/module/action/control.php b/module/action/control.php index e21987216a..a7154db51a 100755 --- a/module/action/control.php +++ b/module/action/control.php @@ -28,23 +28,26 @@ class action extends control /* Save session. */ $uri = $this->app->getURI(true); - $this->session->set('productList', $uri, 'product'); - $this->session->set('productPlanList', $uri, 'product'); - $this->session->set('storyList', $uri, 'product'); - $this->session->set('releaseList', $uri, 'product'); - $this->session->set('programList', $uri, 'program'); - $this->session->set('projectList', $uri, 'project'); - $this->session->set('executionList', $uri, 'execution'); - $this->session->set('taskList', $uri, 'execution'); - $this->session->set('buildList', $uri, 'execution'); - $this->session->set('bugList', $uri, 'qa'); - $this->session->set('caseList', $uri, 'qa'); - $this->session->set('testtaskList', $uri, 'qa'); - $this->session->set('docList', $uri, 'doc'); - $this->session->set('opportunityList', $uri, 'project'); - $this->session->set('riskList', $uri, 'project'); - $this->session->set('trainplanList', $uri, 'project'); - $this->session->set('roomList', $uri, 'admin'); + $this->session->set('productList', $uri, 'product'); + $this->session->set('productPlanList', $uri, 'product'); + $this->session->set('storyList', $uri, 'product'); + $this->session->set('releaseList', $uri, 'product'); + $this->session->set('programList', $uri, 'program'); + $this->session->set('projectList', $uri, 'project'); + $this->session->set('executionList', $uri, 'execution'); + $this->session->set('taskList', $uri, 'execution'); + $this->session->set('buildList', $uri, 'execution'); + $this->session->set('bugList', $uri, 'qa'); + $this->session->set('caseList', $uri, 'qa'); + $this->session->set('testtaskList', $uri, 'qa'); + $this->session->set('docList', $uri, 'doc'); + $this->session->set('opportunityList', $uri, 'project'); + $this->session->set('riskList', $uri, 'project'); + $this->session->set('trainplanList', $uri, 'project'); + $this->session->set('roomList', $uri, 'admin'); + $this->session->set('researchplanList', $uri, 'project'); + $this->session->set('researchreportList', $uri, 'project'); + $this->session->set('meetingList', $uri, 'project'); /* Get deleted objects. */ $this->app->loadClass('pager', $static = true);