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

fixed a problem with displaying current ACLs for group/user names with special chars

darcs-hash:20081210172333-7ad00-f4a35cfa079a380eedd99c5141e480959864fd38.gz
parent e32241a2
No related branches found
No related tags found
No related merge requests found
...@@ -588,8 +588,8 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { ...@@ -588,8 +588,8 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin {
$check = $ID; $check = $ID;
} }
if(isset($this->acl[$check][auth_nameencode($this->who,true)])){ if(isset($this->acl[$check][$this->who])){
return $this->acl[$check][auth_nameencode($this->who,true)]; return $this->acl[$check][$this->who];
}else{ }else{
return null; return null;
} }
......
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