diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-12-16 17:44:47 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-12-16 17:44:47 +0100 |
commit | 78750b946c9b9beb85edd7abe493b4e989e30a73 (patch) | |
tree | 2598b5fd9bfb9030ee2239cb85d8f6133825ab34 | |
parent | f523fef59b5d0adba27c3efd0cbe1af2ad902739 (diff) | |
download | rpg-78750b946c9b9beb85edd7abe493b4e989e30a73.tar.gz rpg-78750b946c9b9beb85edd7abe493b4e989e30a73.tar.bz2 |
ACL Manager: typo fix for checking group membership FS#1529
darcs-hash:20081216164447-7ad00-e42b37320964359c0be8b105e0903c1a380e5b52.gz
-rw-r--r-- | lib/plugins/acl/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php index 77bd285d3..b15ac1222 100644 --- a/lib/plugins/acl/admin.php +++ b/lib/plugins/acl/admin.php @@ -356,7 +356,7 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { if($info === false){ $groups = array(); }else{ - $groups = $info['groups']; + $groups = $info['grps']; } } |