Fix httpOnly flag by mistake.... (#1032)

73da2af393 fix.
This commit is contained in:
Min-Soo Kim 2018-04-23 00:17:26 +09:00 committed by GitHub
parent 73da2af393
commit 0347bb7053
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -297,7 +297,7 @@ class Session
$ssl_only = (\RX_SSL && config('session.use_ssl')) ? true : false;
// Set sso cookie to prevent multiple simultaneous SSO validation requests.
setcookie('sso', md5($current_domain), 0, '/', null, null, $ssl_only, true);
setcookie('sso', md5($current_domain), 0, '/', null, null, $ssl_only);
// Redirect to the default site.
$sso_request = Security::encrypt($current_url);