From f8cc3354486d30b85605f131662091b6ddc1e9e9 Mon Sep 17 00:00:00 2001 From: Guy Brand Date: Fri, 2 Mar 2007 11:05:06 +0100 Subject: Fix broken if in previous patch darcs-hash:20070302100506-19e2d-342a0477340aa6b2c5fb7e08c520053b7dc33608.gz --- inc/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inc/auth.php') 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{ -- cgit v1.2.3