From 7f94a46592ba7a4f02ee6c50dc7827152796fd96 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Thu, 9 Dec 2021 09:53:54 +0800 Subject: [PATCH] * Fix bug #16792. --- 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 1cf3695725..03d45e0b1f 100644 --- a/module/program/control.php +++ b/module/program/control.php @@ -513,7 +513,7 @@ class program extends control $this->view->dept = $dept; $this->view->depts = array('' => '') + $this->dept->getOptionMenu(); $this->view->stakeholders = $this->program->getStakeholders($programID, 't1.id_desc'); - $this->view->parentStakeholders = $this->program->getStakeholdersByList($parentIdList); + $this->view->parentStakeholders = $this->program->getStakeholdersByPrograms($parentIdList); $this->display(); }