* [highgo] Convert id list to array

This commit is contained in:
朱金勇
2025-10-11 08:51:00 +08:00
committed by Gitfox
parent be012b1cbd
commit 541d6e8047
+1 -1
View File
@@ -700,7 +700,7 @@ class project extends control
$this->view->planGroup = $this->loadModel('execution')->getPlans(array_keys($products));
$this->view->branchGroups = $this->loadModel('branch')->getByProducts(array_keys($products), 'ignoreNormal', $linkedBranches);
$this->view->dynamics = $this->loadModel('action')->getDynamic('all', 'all', 'date_desc', 50, 'all', $projectID);
$this->view->programList = $this->loadModel('program')->getPairsByList(explode(',', trim($project->path, ',')));
$this->view->programList = $this->loadModel('program')->getPairsByList(toIntArray($project->path));
$this->view->users = $userPairs;
$this->view->userList = $userList;