mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Merge pull request #59415 from hamidout/fix/user-ldap-last-login-config-key
fix(user_ldap): fix lastLogin reading wrong appid and configkey
This commit is contained in:
commit
92e4c882fc
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ class OfflineUser {
|
|||
$this->foundDeleted = $this->userConfig->getValueInt($this->ocName, 'user_ldap', 'foundDeleted');
|
||||
$this->extStorageHome = $this->userConfig->getValueString($this->ocName, 'user_ldap', 'extStorageHome');
|
||||
$this->email = $this->userConfig->getValueString($this->ocName, 'user_ldap', 'email');
|
||||
$this->lastLogin = $this->userConfig->getValueInt($this->ocName, 'user_ldap', 'email');
|
||||
$this->lastLogin = $this->userConfig->getValueInt($this->ocName, 'login', 'lastLogin');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue