diff options
-rw-r--r-- | inc/auth.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/auth.php b/inc/auth.php index e0f955568..020520004 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -304,7 +304,8 @@ function auth_aclcheck($id,$user,$groups){ //we did this already //looks like there is something wrong with the ACL //break here - return $perm; + msg('No ACL setup yet! Denying access to everyone.'); + return AUTH_NONE; } }while(1); //this should never loop endless |