fix password check when using remember me login

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/2301/head
Robin Appelman 9 years ago
parent f4cf125a4a
commit dd7d493e4d
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
  1. 7
      lib/private/Template/JSConfigHelper.php

@ -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…
Cancel
Save