Use prefixed cookies for user language

This commit is contained in:
Joshua Ramon Enslin 2021-05-13 14:48:44 +02:00
parent fe0a8ba83b
commit d03befe483
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -354,17 +354,17 @@ final class MD_STD {
];
if (isset($_GET['navlang']) and in_array($_GET['navlang'], $allowed_langs, true)) {
if (!(setcookie('lang', $_GET['navlang'], $cookie_options))) {
if (!(setcookie('__HOST-lang', $_GET['navlang'], $cookie_options))) {
throw new Exception("Failed to set language");
}
$lang = $_GET['navlang'];
}
else if (isset($_COOKIE['lang']) and in_array($_COOKIE['lang'], $allowed_langs, true)) {
$lang = $_COOKIE['lang'];
else if (isset($_COOKIE['__HOST-lang']) and in_array($_COOKIE['__HOST-lang'], $allowed_langs, true)) {
$lang = $_COOKIE['__HOST-lang'];
}
else {
$lang = self::lang_getfrombrowser($allowed_langs, $default_lang, "", false);
if (!(setcookie('lang', $lang, $cookie_options))) {
if (!(setcookie('__HOST-lang', $lang, $cookie_options))) {
throw new Exception("Failed to set language");
}
}