Skip to content
Snippets Groups Projects
Commit 9ce556d2 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fixed ACL loading after the recent changes/messup

parent 32e82180
No related branches found
No related tags found
No related merge requests found
...@@ -131,26 +131,24 @@ function auth_loadACL() { ...@@ -131,26 +131,24 @@ function auth_loadACL() {
//support user wildcard //support user wildcard
$out = array(); $out = array();
if(isset($_SERVER['REMOTE_USER'])){ foreach($acl as $line) {
$len = count($acl); $line = trim($line);
for($i = 0; $i < $len; $i++) { if($line{0} == '#') continue;
if($acl[$i]{0} == '#') continue; list($id,$rest) = preg_split('/\s+/',$line,2);
if(!trim($acl[$i])) continue;
list($id,$rest) = preg_split('/\s+/',$acl[$i],2); if(strstr($line, '%GROUP%')){
foreach((array) $USERINFO['grps'] as $grp){
if(strstr($acl[$i], '%GROUP%')){ $nid = str_replace('%GROUP%',cleanID($grp),$id);
foreach($USERINFO['grps'] as $grp){ $nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest);
$nid = str_replace('%GROUP%',cleanID($grp),$id); $out[] = "$nid\t$nrest";
$nrest = str_replace('%GROUP%','@'.auth_nameencode($grp),$rest);
$out[] = "$nid\t$nrest";
}
} else {
$id = str_replace('%USER%',cleanID($_SERVER['REMOTE_USER']),$id);
$rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest);
$out[] = "$id\t$rest";
} }
} else {
$id = str_replace('%USER%',cleanID($_SERVER['REMOTE_USER']),$id);
$rest = str_replace('%USER%',auth_nameencode($_SERVER['REMOTE_USER']),$rest);
$out[] = "$id\t$rest";
} }
} }
return $out; return $out;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment