From b70e6047dbe4af2f68c9024a264fc143071e4678 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Thu, 19 May 2022 16:33:20 +0800 Subject: [PATCH] * Fix bug for batch assign. --- 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 ef19f1674f..b44c94a57b 100755 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -1446,7 +1446,7 @@ class bug extends control $this->loadModel('score')->create('ajax', 'batchOther'); } - if($type == 'product' || $type == 'my') return print(js::locate($this->session->bugList, 'parent')); + if($type == 'product' || $type == 'my') return print(js::reload('parent')); if($type == 'execution') return print(js::locate($this->createLink('execution', 'bug', "executionID=$objectID"))); if($type == 'project') return print(js::locate($this->createLink('project', 'bug', "projectID=$objectID"))); }