* [Acl] fix acl bug.

This commit is contained in:
sunguangming
2025-02-28 13:16:47 +08:00
committed by 田淑杰
parent 7f7d75d407
commit cafc2183e2
+1 -1
View File
@@ -307,7 +307,7 @@ class stakeholderModel extends model
public function getParentStakeholderGroup(array $objectIdList): array
{
$parents = array();
$objects = $this->loadModel('project')->getListByAcl('private', $objectIdList);
$objects = $this->loadModel('project')->getListByAcl('private,program', $objectIdList);
foreach($objects as $object)
{
if($object->parent == 0) continue;