From 13a2aa46ebd3849d45bbb6c58712edced3252c25 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 3 Mar 2025 06:44:15 +0000 Subject: [PATCH] * [bug#59398,done,0.2h] fix bug. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index 58d52febe0..cb32ac0a59 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -280,7 +280,7 @@ class executionModel extends model $this->executionTao->addExecutionMembers($executionID, $postMembers); $this->executionTao->createMainLib($execution->project, $executionID, $execution->type); - $this->loadModel('personnel')->updateWhitelist(explode(',', $execution->whitelist), 'execution', $executionID); + $this->loadModel('personnel')->updateWhitelist(explode(',', $execution->whitelist), 'sprint', $executionID); if($execution->acl != 'open') $this->updateUserView($executionID); $this->updateProducts($executionID, $execution);