From 64b090ee058953aed2246967332c7f0b6623cd8f Mon Sep 17 00:00:00 2001 From: lolcat Date: Tue, 17 Oct 2023 17:58:08 -0400 Subject: fix cookie big --- settings.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'settings.php') diff --git a/settings.php b/settings.php index 98e6b49..41322d6 100644 --- a/settings.php +++ b/settings.php @@ -278,7 +278,7 @@ foreach($loop as $key => $value){ "", [ "expires" => -1, // removes cookie - "samesite" => "Strict", + "samesite" => "Lax", "path" => "/" ] ); @@ -303,7 +303,8 @@ foreach($loop as $key => $value){ $value, [ "expires" => strtotime("+400 days"), // maximal cookie ttl in chrome - "samesite" => "Strict" + "samesite" => "Lax", + "path" => "/" ] ); } -- cgit v1.2.3