diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-05 10:40:41 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-05 10:40:41 -0400 |
commit | 45774afafcae850ecf71ea90b426fffc2c6f0628 (patch) | |
tree | eda76d88e4d5493b4e43e3a6db8e44e23a5960da /app/Model | |
parent | e7b967d7432267d48e54d7775d0baf1e411178e7 (diff) |
Do not rewrite remember me cookie for each request
Diffstat (limited to 'app/Model')
-rw-r--r-- | app/Model/Authentication.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/Model/Authentication.php b/app/Model/Authentication.php index 86c1c43f..31969b57 100644 --- a/app/Model/Authentication.php +++ b/app/Model/Authentication.php @@ -49,11 +49,6 @@ class Authentication extends Base return false; } - // We update each time the RememberMe cookie tokens - if ($this->backend('rememberMe')->hasCookie()) { - $this->backend('rememberMe')->refresh(); - } - return true; } |