From 31b533eac1985cb4ea76bd27e97001222105443b Mon Sep 17 00:00:00 2001 From: holan20180123 <56391770@qq.com> Date: Wed, 26 Aug 2020 10:24:28 +0800 Subject: [PATCH] * Fix bug #3404. --- module/risk/control.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/module/risk/control.php b/module/risk/control.php index 916a0d0a0f..21a37ffc06 100644 --- a/module/risk/control.php +++ b/module/risk/control.php @@ -15,6 +15,9 @@ class risk extends control */ public function browse($browseType = 'all', $param = '', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { + $uri = $this->app->getURI(true); + $this->session->set('riskList', $uri); + $queryID = ($browseType == 'bysearch') ? (int)$param : 0; /* Build the search form. */ $actionURL = $this->createLink('risk', 'browse', "browseType=bysearch&queryID=myQueryID");