From 5c23642d3659a256b0663bebf6cbd5b3163c6e7a Mon Sep 17 00:00:00 2001 From: liyuchun Date: Mon, 6 Dec 2021 09:06:50 +0800 Subject: [PATCH] * Fix bug #16639. --- module/testtask/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/testtask/control.php b/module/testtask/control.php index f6f1581325..581976b8af 100644 --- a/module/testtask/control.php +++ b/module/testtask/control.php @@ -1365,7 +1365,7 @@ class testtask extends control ->andWhere('`case`')->in($this->post->caseIDList) ->exec(); $this->loadModel('action'); - foreach($this->post->caseIDList as $caseID) $this->action->create('case', $caseID, 'assigned', '', $taskID); + foreach($this->post->caseIDList as $caseID) $this->action->create('case', $caseID, 'assigned', '', $this->post->assignedTo); die(js::locate($this->session->caseList, 'parent')); }