diff --git a/changelang.php b/changelang.php index 7a84404..bd1a451 100755 --- a/changelang.php +++ b/changelang.php @@ -17,10 +17,12 @@ */ $app_disp_lang = filter_input(INPUT_POST, 'app_disp_lang', FILTER_SANITIZE_STRING); // GET SANITARY LANG CHOICE - setcookie ( 'app_disp_lang', $app_disp_lang, [ - 'expires' => time() + 60*60*24*90, - 'secure' => false, - 'httponly' => false, - 'samesite' => 'Lax', - ]); + // only works with new php? + // setcookie ( 'app_disp_lang', $app_disp_lang, [ + // 'expires' => time() + 60*60*24*90, + // 'secure' => false, + // 'httponly' => false, + // 'samesite' => 'Lax', + //]); + setcookie ( 'app_disp_lang', $app_disp_lang, time() + 60*60*24*90); // SET SITE COOKIE header('Location: index.php'); // GO HOME UNTIL WE ADD REFERER LOGIC diff --git a/changesite.php b/changesite.php index dbad809..169498a 100755 --- a/changesite.php +++ b/changesite.php @@ -17,10 +17,11 @@ */ $site = filter_input(INPUT_POST, 'site', FILTER_SANITIZE_STRING); // GET SANITARY SITE CHOICE - setcookie ( 'app_site', $site, [ - 'expires' => time() + 60*60*24*90, - 'secure' => false, - 'httponly' => false, - 'samesite' => 'Lax', - ]); + //setcookie ( 'app_site', $site, [ + // 'expires' => time() + 60*60*24*90, + // 'secure' => false, + // 'httponly' => false, + // 'samesite' => 'Lax', + //]); + setcookie ( 'app_site', $site, time() + 60*60*24*90); // SET SITE COOKIE header('Location: index.php'); // GO HOME UNTIL WE ADD REFERER LOGIC