Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2014-04-11 20:33:58 +0400
committerArthur Schiwon <blizzz@owncloud.com>2014-04-11 20:33:58 +0400
commit80a294b3348cc98fcbac64bb1d79f5b3b06cf543 (patch)
treecff4f15952702474b921f3adfd56c974bd697244 /apps/user_ldap
parent6636c14c2a0e77306ae893c589ce5f088c8e4a46 (diff)
LDAP: fetch email from LDAP on userExists check as well (along to Quota and Avatar)
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/user_ldap.php1
1 files changed, 1 insertions, 0 deletions
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;
}