diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-06-22 12:42:07 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-06-25 13:22:00 +0200 |
commit | 3f6a7859c9ed71823767ff0932c9ff48067be1e2 (patch) | |
tree | c133e5f0f327de28a20fe16e727e3a714f047a52 | |
parent | d64a7716f1a32cda698cb26597d074de8b9ab245 (diff) | |
download | nextcloud-server-3f6a7859c9ed71823767ff0932c9ff48067be1e2.tar.gz nextcloud-server-3f6a7859c9ed71823767ff0932c9ff48067be1e2.zip |
LDAP: cheaper userExists() implementation, fixes oc-1012
-rw-r--r-- | apps/user_ldap/user_ldap.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 85b3d88973c..b98cf7a55b2 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -137,6 +137,9 @@ class OC_USER_LDAP extends OC_User_Backend { } return true; + } + + return true; } }
\ No newline at end of file |