From 7e6110ad8d68cccebc296a138273e332a47e9d0f Mon Sep 17 00:00:00 2001 From: tianshujie Date: Thu, 14 Sep 2023 09:54:31 +0800 Subject: [PATCH] - Delete unused param. --- module/program/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/program/control.php b/module/program/control.php index 16df3cadd2..836dd86505 100644 --- a/module/program/control.php +++ b/module/program/control.php @@ -63,7 +63,7 @@ class program extends control /* Get top programs and projects. */ $topObjects = $this->program->getList($status == 'unclosed' ? 'doing,suspended,wait' : $status, $orderBy, 'top', array(), $pager); if(!$topObjects) $topObjects = array(0); - $programs = $this->program->getList($status, $orderBy, null, 'child', array_keys($topObjects)); + $programs = $this->program->getList($status, $orderBy, 'child', array_keys($topObjects)); /* Get summary. */ $topCount = $indCount = 0;