From 3cda55962aa45473f7c6e508c261bb97743f52c4 Mon Sep 17 00:00:00 2001 From: qiyu-xie Date: Tue, 30 Mar 2021 13:15:37 +0800 Subject: [PATCH] * Fix bug#11641. --- module/bug/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/bug/control.php b/module/bug/control.php index cbb6acd20e..7a2187dc17 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -385,7 +385,7 @@ class bug extends control { $location = $this->createLink('execution', 'bug', "executionID={$output['executionID']}"); } - if(isset($output['projectID'])) + elseif(isset($output['projectID'])) { $location = $this->createLink('project', 'bug', "projectID={$output['projectID']}"); }