Change array

https://github.com/PrivateBin/PrivateBin/issues/41

Not tested locally, let's say what Travis says... 😄
This commit is contained in:
rugk 2016-07-18 13:11:15 +02:00 committed by GitHub
parent e087d2f206
commit 19d5659a8f

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 = $_COOKIE['lang'];
$match = $availableLanguages[$_COOKIE['lang']];
}
// find a translation file matching the browsers language preferences
else