summaryrefslogtreecommitdiff
path: root/inc/auth.php
diff options
context:
space:
mode:
authorGuy Brand <gb@isis.u-strasbg.fr>2007-03-02 11:05:06 +0100
committerGuy Brand <gb@isis.u-strasbg.fr>2007-03-02 11:05:06 +0100
commitf8cc3354486d30b85605f131662091b6ddc1e9e9 (patch)
treec6aef87591efcb5ed42d8ef719226772c128c5b6 /inc/auth.php
parenta8fe108b00a44fe91f90820a1e3cf44b55de2259 (diff)
downloadrpg-f8cc3354486d30b85605f131662091b6ddc1e9e9.tar.gz
rpg-f8cc3354486d30b85605f131662091b6ddc1e9e9.tar.bz2
Fix broken if in previous patch
darcs-hash:20070302100506-19e2d-342a0477340aa6b2c5fb7e08c520053b7dc33608.gz
Diffstat (limited to 'inc/auth.php')
-rw-r--r--inc/auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/auth.php b/inc/auth.php
index 9fa721e14..7b3f23bf3 100644
--- a/inc/auth.php
+++ b/inc/auth.php
@@ -76,7 +76,7 @@
global $AUTH_ACL;
if(is_readable(DOKU_CONF.'acl.auth.php')){
$AUTH_ACL = file(DOKU_CONF.'acl.auth.php');
- if(isset($_SERVER['REMOTE_USER']){
+ if(isset($_SERVER['REMOTE_USER'])){
$AUTH_ACL = str_replace('@USER@',$_SERVER['REMOTE_USER'],$AUTH_ACL);
}
}else{