From 9f23e540d93451f8db8cf46a2d529222ab203cfb Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Mon, 24 Jan 2022 06:26:54 +0000 Subject: [PATCH] * Modify config data. --- module/gitlab/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/gitlab/control.php b/module/gitlab/control.php index b7f668427d..affcc35f90 100644 --- a/module/gitlab/control.php +++ b/module/gitlab/control.php @@ -314,7 +314,7 @@ class gitlab extends control } $groups = $this->gitlab->apiGetGroups($gitlabID, $orderBy); - $adminGroups = $this->gitlab->apiGetGroups($gitlabID, $orderBy, $this->gitlab->config->accessLevel['owner']); + $adminGroups = $this->gitlab->apiGetGroups($gitlabID, $orderBy, $this->config->gitlab->accessLevel['owner']); $adminGropuIDList = array(); foreach($adminGroups as $group) $adminGropuIDList[] = $group->id;