1
Hi All!
To Core Team...!!!
In the file session.php, I've noticed in a variable 'securityLevel', the possibility of implement this hack.
The likely source code could be this:
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
$langConfig = array("en" => "english/", "it" => "italian/",
"de" => "deutsch/", "fr" => "french/",
"default" => "english/");
if(array_key_exists($lang, $langConfig)) {
$language = $langConfig[$lang];
} else {
$language = $langConfig['default'];
}
header('Location: ' . $language);