From 541d6e8047a69b2f2b6406afef635e9bbc3d89b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E9=87=91=E5=8B=87?= Date: Sat, 11 Oct 2025 08:51:00 +0800 Subject: [PATCH] * [highgo] Convert id list to array --- module/project/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/control.php b/module/project/control.php index aab1ffb94c..21578f9be9 100755 --- a/module/project/control.php +++ b/module/project/control.php @@ -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;