summaryrefslogtreecommitdiff
path: root/inc/auth.php
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-03-28 21:47:45 +0200
committerandi <andi@splitbrain.org>2005-03-28 21:47:45 +0200
commit52a5af8d8e4bd46ae07edf29d3b7a3d9e7d2d0af (patch)
tree37e7ea0280c150e3960c6ca0eb692ca4fd9bab63 /inc/auth.php
parent16dfeadd790d45b9a6b7517724e3e39e55bf5b04 (diff)
downloadrpg-52a5af8d8e4bd46ae07edf29d3b7a3d9e7d2d0af.tar.gz
rpg-52a5af8d8e4bd46ae07edf29d3b7a3d9e7d2d0af.tar.bz2
auth_aclchecke now returns AUTH_NONE instead -1 (#218)
darcs-hash:20050328194745-9977f-729b0fde1e0655c039dc2b489c4afc853dee8acb.gz
Diffstat (limited to 'inc/auth.php')
-rw-r--r--inc/auth.php3
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;
}
/**