fix siteid cookie to secure
This commit is contained in:
@@ -20,8 +20,8 @@
|
||||
// only works with new php?
|
||||
setcookie ( 'app_disp_lang', $app_disp_lang, [
|
||||
'expires' => time() + 60*60*24*90,
|
||||
'secure' => false,
|
||||
'httponly' => false,
|
||||
'secure' => true,
|
||||
'httponly' => true,
|
||||
'samesite' => 'Strict',
|
||||
]);
|
||||
//setcookie ( 'app_disp_lang', $app_disp_lang, time() + 60*60*24*90); // SET SITE COOKIE
|
||||
|
||||
Reference in New Issue
Block a user