diff options
author | blizzz <blizzz@owncloud.com> | 2015-07-29 16:12:08 +0200 |
---|---|---|
committer | blizzz <blizzz@owncloud.com> | 2015-07-29 16:12:08 +0200 |
commit | 332492548fbbff1d1d06286a5d5880cf4beee507 (patch) | |
tree | d54618c179231a0a76b78afc5261fc200845e1fc /apps/user_ldap/lib | |
parent | f1749ddb0184c22200231d7f13f81e64e6000c3b (diff) | |
parent | e0d5eb898958037b1f9d9c97ee101083ede51aaa (diff) | |
download | nextcloud-server-332492548fbbff1d1d06286a5d5880cf4beee507.tar.gz nextcloud-server-332492548fbbff1d1d06286a5d5880cf4beee507.zip |
Merge pull request #17923 from owncloud/fix-17921
Remove Log info when no group filter is set, fixes #17921
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/connection.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 2bb2e1f8cb6..6f2fdce1b5f 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -341,14 +341,6 @@ class Connection extends LDAPUtility { } } - $groupFilter = $this->configuration->ldapGroupFilter; - if(empty($groupFilter)) { - \OCP\Util::writeLog('user_ldap', - 'No group filter is specified, LDAP group '. - 'feature will not be used.', - \OCP\Util::INFO); - } - foreach(array('ldapExpertUUIDUserAttr' => 'ldapUuidUserAttribute', 'ldapExpertUUIDGroupAttr' => 'ldapUuidGroupAttribute') as $expertSetting => $effectiveSetting) { |