Browse Source

Fix issues where some user settings cannot be loaded when the user id differs in case sensitivity - fixes #25684 (#25686)

pull/1142/head
Thomas Müller 9 years ago
committed by Lukas Reschke
parent
commit
82e8762c84
No known key found for this signature in database GPG Key ID: B9F6980CF6E759B1
  1. 10
      lib/private/User/Manager.php

10
lib/private/User/Manager.php

@ -157,6 +157,16 @@ class Manager extends PublicEmitter implements IUserManager {
return $this->cachedUsers[$uid];
}
if (method_exists($backend, 'loginName2UserName')) {
$loginName = $backend->loginName2UserName($uid);
if ($loginName !== false) {
$uid = $loginName;
}
if (isset($this->cachedUsers[$uid])) {
return $this->cachedUsers[$uid];
}
}
$user = new User($uid, $backend, $this, $this->config);
if ($cacheUser) {
$this->cachedUsers[$uid] = $user;

Loading…
Cancel
Save