From 4bd1ec2cebf2cecdcd19dd6f5e391c4653528607 Mon Sep 17 00:00:00 2001 From: hufangzhou <746775970@qq.com> Date: Wed, 10 Mar 2021 10:31:55 +0800 Subject: [PATCH] * Fix a bug. --- module/qa/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/qa/control.php b/module/qa/control.php index f210bc305d..6acc7f40b8 100644 --- a/module/qa/control.php +++ b/module/qa/control.php @@ -30,7 +30,7 @@ class qa extends control parent::__construct(); /* Set report menu group. */ - $this->projectID = isset($_GET['project']) ? $_GET['project'] : 0; + $this->projectID = isset($_GET['PRJ']) ? $_GET['PRJ'] : 0; if(!$this->projectID) { foreach($this->config->qa->menuList as $module) $this->lang->navGroup->$module = 'qa';