summaryrefslogtreecommitdiff
path: root/inc/auth.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-07-29 17:54:57 +0200
committerAndreas Gohr <andi@splitbrain.org>2005-07-29 17:54:57 +0200
commite7cb32dcb57d3ae03544db66367d6aaa02f7ddf8 (patch)
tree7d7f82cc8049656bc859ebfc2961d9a2fd2f9918 /inc/auth.php
parent9f830448ee35b709be3c303585a230dfbf8582b3 (diff)
downloadrpg-e7cb32dcb57d3ae03544db66367d6aaa02f7ddf8.tar.gz
rpg-e7cb32dcb57d3ae03544db66367d6aaa02f7ddf8.tar.bz2
DOKU_CONF define for config directory #479
darcs-hash:20050729155457-7ad00-94554865259e4cbd6a1c75bb62a93f37304adbf0.gz
Diffstat (limited to 'inc/auth.php')
-rw-r--r--inc/auth.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth.php b/inc/auth.php
index 020520004..463d947a2 100644
--- a/inc/auth.php
+++ b/inc/auth.php
@@ -31,8 +31,8 @@
if($conf['useacl']){
auth_login($_REQUEST['u'],$_REQUEST['p'],$_REQUEST['r']);
//load ACL into a global array
- if(is_readable(DOKU_INC.'conf/acl.auth.php')){
- $AUTH_ACL = file(DOKU_INC.'conf/acl.auth.php');
+ if(is_readable(DOKU_CONF.'acl.auth.php')){
+ $AUTH_ACL = file(DOKU_CONF.'acl.auth.php');
}else{
$AUTH_ACL = array();
}