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:
Ferdinand Thiessen 2026-04-03 15:00:44 +02:00 committed by GitHub
commit 92e4c882fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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');
}
/**