Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
Fix cookie path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdacasserole committed Mar 8, 2017
1 parent b212f1c commit 7d67887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Authenticator.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function setCookieToken($token)
setcookie($this->config->getCookieName(),
$encrypted,
time() + $this->config->getTokenTtl(),
'',
'/',
'',
$this->config->getCookieSslOnly(),
$this->config->getCookieHttpOnly()); // Store in cookie.
Expand Down

0 comments on commit 7d67887

Please sign in to comment.