From cb4c41b19e2c323362daadd7a6411b723e5faa46 Mon Sep 17 00:00:00 2001 From: hufangzhou Date: Fri, 7 Apr 2023 15:38:06 +0800 Subject: [PATCH] * Fix bug for pairs. --- module/group/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/group/control.php b/module/group/control.php index cb9569fbd9..79f62777b7 100644 --- a/module/group/control.php +++ b/module/group/control.php @@ -1046,7 +1046,7 @@ class group extends control } $privList = $this->group->getCustomPrivs($menu, $privList); - $privList = $this->group->transformPrivLang($privList); + $privList = $this->group->transformPrivLang($privList, true); return print(html::select('actions[]', $privList, '', "multiple='multiple' class='form-control'")); }