diff options
author | andi <andi@splitbrain.org> | 2005-03-28 21:47:45 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-03-28 21:47:45 +0200 |
commit | 52a5af8d8e4bd46ae07edf29d3b7a3d9e7d2d0af (patch) | |
tree | 37e7ea0280c150e3960c6ca0eb692ca4fd9bab63 | |
parent | 16dfeadd790d45b9a6b7517724e3e39e55bf5b04 (diff) | |
download | rpg-52a5af8d8e4bd46ae07edf29d3b7a3d9e7d2d0af.tar.gz rpg-52a5af8d8e4bd46ae07edf29d3b7a3d9e7d2d0af.tar.bz2 |
auth_aclchecke now returns AUTH_NONE instead -1 (#218)
darcs-hash:20050328194745-9977f-729b0fde1e0655c039dc2b489c4afc853dee8acb.gz
-rw-r--r-- | inc/auth.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/auth.php b/inc/auth.php index 96141cd1d..e139db4fa 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -294,6 +294,9 @@ function auth_aclcheck($id,$user,$groups){ return $perm; } }while(1); //this should never loop endless + + //still here? return no permissions + return AUTH_NONE; } /** |