From 51337cac92f71955a1ba1d9e57ac1e187668550a Mon Sep 17 00:00:00 2001 From: Zongjun Lan Date: Thu, 14 Apr 2022 11:13:31 +0800 Subject: [PATCH] * fix bug *15336 --- module/my/control.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/module/my/control.php b/module/my/control.php index 0723ca3b6f..171cef2db3 100644 --- a/module/my/control.php +++ b/module/my/control.php @@ -243,10 +243,10 @@ EOF; /* Save session. */ $uri = $this->app->getURI(true); $this->session->set('todoList', $uri, 'my'); - $this->session->set('bugList', $uri, 'qa'); - $this->session->set('taskList', $uri, 'execution'); - $this->session->set('storyList', $uri, 'product'); - $this->session->set('testtaskList', $uri, 'qa'); + $this->session->set('bugList', $uri, 'my'); + $this->session->set('taskList', $uri, 'my'); + $this->session->set('storyList', $uri, 'my'); + $this->session->set('testtaskList', $uri, 'my'); /* Load pager. */ $this->app->loadClass('pager', $static = true);