From 8d491f9f4cf98eeedafcfab47503ffbb3942c791 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 27 Sep 2023 09:47:24 +0800 Subject: [PATCH] * Fix bug of testreportZen::buildReportBugData. --- module/testreport/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/testreport/zen.php b/module/testreport/zen.php index 56428c171e..1be9e95e4b 100644 --- a/module/testreport/zen.php +++ b/module/testreport/zen.php @@ -418,7 +418,7 @@ class testreportZen extends testreport { /* Get activated bugs. */ $buildIdList = array_keys($builds); - $activatedBugs = $this->testreport->getActivatedBugs($tasks, $productIdList, $begin, $end, $buildIdList); + $activatedBugs = $this->bug->getActivatedBugs($productIdList, $begin, $end, $buildIdList); /* Get stage and handle groups. */ list($stageGroups, $handleGroups) = $this->getStageAndHandleGroups($productIdList, $begin, $end, $buildIdList);