mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
Merge pull request #44 from PrivateBin/rugk-itBugsMe
Change array used for language selection
This commit is contained in:
commit
e1d6db88a1
@ -141,7 +141,7 @@ class i18n
|
|||||||
// check if the lang cookie was set and that language exists
|
// check if the lang cookie was set and that language exists
|
||||||
if (array_key_exists('lang', $_COOKIE) && in_array($_COOKIE['lang'], $availableLanguages))
|
if (array_key_exists('lang', $_COOKIE) && in_array($_COOKIE['lang'], $availableLanguages))
|
||||||
{
|
{
|
||||||
$match = $_COOKIE['lang'];
|
$match = $availableLanguages[array_search($_COOKIE['lang'], $availableLanguages)];
|
||||||
}
|
}
|
||||||
// find a translation file matching the browsers language preferences
|
// find a translation file matching the browsers language preferences
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user