Search key first

Looks a bit complicated, but well...
This commit is contained in:
rugk 2016-07-18 13:25:41 +02:00 committed by GitHub
parent 80e9d75477
commit 2e863e3ed9

View File

@ -141,7 +141,7 @@ class i18n
// check if the lang cookie was set and that language exists
if (array_key_exists('lang', $_COOKIE) && in_array($_COOKIE['lang'], $availableLanguages))
{
$match = $availableLanguages['lang'];
$match = $availableLanguages[array_search($_COOKIE['lang'], $availableLanguages)];
}
// find a translation file matching the browsers language preferences
else