From b9c2d119f5ad21f54797aae1278505f97686f2d0 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Sat, 3 Mar 2018 15:00:32 +0100 Subject: [PATCH] [api.core.auth-system-default] fix 'cas_admin' that was in the wrong format --- build/api/core/AuthSystemDefault.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/api/core/AuthSystemDefault.php b/build/api/core/AuthSystemDefault.php index 17fb4dc..f8125f2 100644 --- a/build/api/core/AuthSystemDefault.php +++ b/build/api/core/AuthSystemDefault.php @@ -61,7 +61,7 @@ // if admin: cas_admin if( $_SESSION['CAS']['admin'] === true ) - $_SESSION['AUTH'][] = ['cas_admin']; + $_SESSION['AUTH'][] = 'cas_admin'; }