From 60fb331b476ea47f592ff4dcbd40458a06d12cc5 Mon Sep 17 00:00:00 2001 From: Kendrick Chan Date: Thu, 5 Mar 2020 23:52:40 +0800 Subject: [PATCH] Fix role controller issue on saving #270 --- src/Controller/RoleController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/RoleController.php b/src/Controller/RoleController.php index 754ab40c..da4de74c 100644 --- a/src/Controller/RoleController.php +++ b/src/Controller/RoleController.php @@ -248,7 +248,7 @@ class RoleController extends Controller if (!$row->isSuperAdmin()) { // clear first - $row->clearACLAttributes(); + $row->clearACLAccess(); // then add $acl_attribs = $req->request->get('acl');