From b09b80d4e786df1bab92496f74a9336dc13e22db Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Fri, 17 Sep 2021 09:30:11 +0800 Subject: [PATCH] * Fix an error: Divide the my bug query condition from bug query condition. --- module/my/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/my/control.php b/module/my/control.php index 9f28a6b2bf..859af3765e 100644 --- a/module/my/control.php +++ b/module/my/control.php @@ -355,7 +355,7 @@ class my extends control $sort = $this->loadModel('common')->appendOrder($orderBy); $bugs = $this->loadModel('bug')->getUserBugs($this->app->user->account, $type, $sort, 0, $pager); $bugs = $this->bug->checkDelayedBugs($bugs); - $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'bug'); + $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'myBug'); /* assign. */ $this->view->title = $this->lang->my->common . $this->lang->colon . $this->lang->my->bug;