summaryrefslogtreecommitdiff
path: root/lib/plugins
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-12-10 18:23:33 +0100
committerAndreas Gohr <andi@splitbrain.org>2008-12-10 18:23:33 +0100
commit3bde27bf32b85bc416ca7ea3252ac67a19731151 (patch)
tree187eeba88e63ae5a439d83146dc482958a5aad54 /lib/plugins
parente32241a262f1c2a74e701a64bc2fd6aef9525584 (diff)
downloadrpg-3bde27bf32b85bc416ca7ea3252ac67a19731151.tar.gz
rpg-3bde27bf32b85bc416ca7ea3252ac67a19731151.tar.bz2
fixed a problem with displaying current ACLs for group/user names with special chars
darcs-hash:20081210172333-7ad00-f4a35cfa079a380eedd99c5141e480959864fd38.gz
Diffstat (limited to 'lib/plugins')
-rw-r--r--lib/plugins/acl/admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php
index 590eaba5e..eff0180a9 100644
--- a/lib/plugins/acl/admin.php
+++ b/lib/plugins/acl/admin.php
@@ -588,8 +588,8 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin {
$check = $ID;
}
- if(isset($this->acl[$check][auth_nameencode($this->who,true)])){
- return $this->acl[$check][auth_nameencode($this->who,true)];
+ if(isset($this->acl[$check][$this->who])){
+ return $this->acl[$check][$this->who];
}else{
return null;
}