diff options
Diffstat (limited to 'application/security/LoginManager.php')
-rw-r--r-- | application/security/LoginManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/security/LoginManager.php b/application/security/LoginManager.php index 4946850b..d6784d6d 100644 --- a/application/security/LoginManager.php +++ b/application/security/LoginManager.php | |||
@@ -95,7 +95,6 @@ class LoginManager | |||
95 | // The user client has a valid stay-signed-in cookie | 95 | // The user client has a valid stay-signed-in cookie |
96 | // Session information is updated with the current client information | 96 | // Session information is updated with the current client information |
97 | $this->sessionManager->storeLoginInfo($clientIpId); | 97 | $this->sessionManager->storeLoginInfo($clientIpId); |
98 | $this->isLoggedIn = true; | ||
99 | 98 | ||
100 | } elseif ($this->sessionManager->hasSessionExpired() | 99 | } elseif ($this->sessionManager->hasSessionExpired() |
101 | || $this->sessionManager->hasClientIpChanged($clientIpId) | 100 | || $this->sessionManager->hasClientIpChanged($clientIpId) |
@@ -105,6 +104,7 @@ class LoginManager | |||
105 | return; | 104 | return; |
106 | } | 105 | } |
107 | 106 | ||
107 | $this->isLoggedIn = true; | ||
108 | $this->sessionManager->extendSession(); | 108 | $this->sessionManager->extendSession(); |
109 | } | 109 | } |
110 | 110 | ||