From 204c60f739e32364cdd2cdcbcb2e5ddfd3569358 Mon Sep 17 00:00:00 2001 From: iglocska Date: Wed, 12 Jan 2022 10:31:06 +0100 Subject: [PATCH] fix: [ACL] fixed ACL check on user edit for the admin permission - invalid name used for the lookup (perm_side_admin instead of perm_admin) leading to incorrect downgrading of the permissions --- src/Controller/AppController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Controller/AppController.php b/src/Controller/AppController.php index 4d41bac..0bb2373 100644 --- a/src/Controller/AppController.php +++ b/src/Controller/AppController.php @@ -54,7 +54,6 @@ class AppController extends Controller public function initialize(): void { parent::initialize(); - $this->loadComponent('RequestHandler'); $this->loadComponent('Flash'); $this->loadComponent('RestResponse');