From f20cef39318e968cc6e9e3065d2d92dbf41e9e48 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Sat, 5 Jul 2014 10:31:34 +0200 Subject: [PATCH] Auth LDAP can retrieve a list of groups and users --- root/usr/share/dokuwiki/lib/plugins/authhttpldap/auth.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/root/usr/share/dokuwiki/lib/plugins/authhttpldap/auth.php b/root/usr/share/dokuwiki/lib/plugins/authhttpldap/auth.php index 38036db..ae07b83 100644 --- a/root/usr/share/dokuwiki/lib/plugins/authhttpldap/auth.php +++ b/root/usr/share/dokuwiki/lib/plugins/authhttpldap/auth.php @@ -33,10 +33,10 @@ class auth_plugin_authhttpldap extends auth_plugin_authldap { 'modName' => false, // can real names be changed? 'modMail' => false, // can emails be changed? 'modGroups' => false, // can groups be changed? - 'getUsers' => false, // can a (filtered) list of users be retrieved? + 'getUsers' => true, // can a (filtered) list of users be retrieved? 'getUserCount'=> false, // can the number of users be retrieved? - 'getGroups' => false, // can a list of available groups be retrieved? - 'external' => true, // does the module do external auth checking? + 'getGroups' => true, // can a list of available groups be retrieved? + 'external' => true, // does the module do external auth checking? 'logout' => true, // can the user logout again? (eg. not possible with HTTP auth) ); }