From 80a294b3348cc98fcbac64bb1d79f5b3b06cf543 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 11 Apr 2014 18:33:58 +0200 Subject: [PATCH] LDAP: fetch email from LDAP on userExists check as well (along to Quota and Avatar) --- apps/user_ldap/user_ldap.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index f2353dfa0db..8876cc7b631 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -236,6 +236,7 @@ class USER_LDAP extends BackendUtility implements \OCP\UserInterface { $this->access->connection->writeToCache('userExists'.$uid, true); $this->updateQuota($dn); + $this->updateEmail($dn); $this->updateAvatar($uid, $dn); return true; }