summaryrefslogtreecommitdiff
path: root/app/Auth
diff options
context:
space:
mode:
Diffstat (limited to 'app/Auth')
-rw-r--r--app/Auth/RememberMe.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Auth/RememberMe.php b/app/Auth/RememberMe.php
index 9f2bb13a..fc2ea78d 100644
--- a/app/Auth/RememberMe.php
+++ b/app/Auth/RememberMe.php
@@ -102,11 +102,10 @@ class RememberMe extends Base
// Create the session
$this->user->updateSession($this->user->getById($record['user_id']));
- $this->acl->isRememberMe(true);
$this->container['dispatcher']->dispatch(
'auth.success',
- new AuthEvent(self::AUTH_NAME, $this->acl->getUserId())
+ new AuthEvent(self::AUTH_NAME, $this->userSession->getId())
);
return true;