fix password check when using remember me login
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
f4cf125a4a
commit
dd7d493e4d
1 changed files with 3 additions and 4 deletions
|
@ -127,10 +127,9 @@ class JSConfigHelper {
|
|||
}
|
||||
|
||||
if ($this->currentUser instanceof IUser) {
|
||||
$lastConfirmTimestamp = $this->currentUser->getLastLogin();
|
||||
$sessionTime = $this->session->get('last-password-confirm');
|
||||
if (is_int($sessionTime)) {
|
||||
$lastConfirmTimestamp = $sessionTime;
|
||||
$lastConfirmTimestamp = $this->session->get('last-password-confirm');
|
||||
if (!is_int($lastConfirmTimestamp)) {
|
||||
$lastConfirmTimestamp = 0;
|
||||
}
|
||||
} else {
|
||||
$lastConfirmTimestamp = 0;
|
||||
|
|
Loading…
Reference in a new issue