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

@ -194,7 +194,7 @@ class memberView extends member
$ssl_only = (\RX_SSL && config('session.use_ssl')) ? true : false;
//setcookie for redirect url in case of going to member sign up
setcookie("XE_REDIRECT_URL", $_SERVER['HTTP_REFERER'], 0, null, null, $ssl_only, true);
setcookie("XE_REDIRECT_URL", $_SERVER['HTTP_REFERER'], 0, null, null, $ssl_only);
$member_config = $this->member_config;