From a0ac6d2c4300c35cc45dec0dde59bd416461cd0d Mon Sep 17 00:00:00 2001 From: liugang Date: Wed, 20 Aug 2025 14:19:50 +0800 Subject: [PATCH] * [bug#64873] Fix parameter type error. --- module/programplan/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/programplan/zen.php b/module/programplan/zen.php index e89c9bd727..58fa40aea5 100644 --- a/module/programplan/zen.php +++ b/module/programplan/zen.php @@ -443,7 +443,7 @@ class programplanZen extends programplan { /* Build the search form. */ $actionURL = $this->createLink('programplan', 'browse', "projectID=$projectID&productID=$productID&type=$type&orderBy=$orderBy&baselineID=$baselineID&browseType=bysearch&queryID=myQueryID"); - $this->loadModel('execution')->buildTaskSearchForm($projectID, $productID, $executions, $queryID, $actionURL, 'programplanTask'); + $this->loadModel('execution')->buildTaskSearchForm($projectID, $productID, [], $queryID, $actionURL, 'programplanTask'); } $this->view->title = $this->lang->programplan->browse;