We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bc34f64 + 888ce71 commit 8035207Copy full SHA for 8035207
VERSION
@@ -1 +1 @@
1
-1.0.70
+1.0.71
classes/Session.class.php
@@ -26,7 +26,6 @@ function start(){
26
session_set_cookie_params([
27
'lifetime' => 0,
28
'path' => '/',
29
- 'domain' => $_SERVER['HTTP_HOST'],
30
'httponly' => true, // prevent javascript access
31
'samesite' => 'Strict' // restrict to same-site requests
32
]);
@@ -77,7 +76,6 @@ public function privacyAgreement(bool $value) {
77
76
setcookie('privacy', $value, [
78
'expires' => time() + (60 * 60 * 24 * 30),
79
80
81
'httponly' => true,
82
'samesite' => 'Strict'
83
0 commit comments