Skip to content

Commit

Permalink
Minz cookie session httpOnly
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkarex committed Jul 31, 2015
1 parent 760ec5f commit 189e790
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Minz/Session.php
Expand Up @@ -70,7 +70,7 @@ public static function keepCookie($l) {
if (substr($cookie_dir, -1) !== '/') {
$cookie_dir = dirname($cookie_dir) . '/';
}
session_set_cookie_params($l, $cookie_dir, '', false, false);
session_set_cookie_params($l, $cookie_dir, '', false, true);
}


Expand Down

0 comments on commit 189e790

Please sign in to comment.