forcing language by parameter

2022.09-rc
Jeroen De meerleer 2018-12-28 22:39:07 +01:00 zatwierdzone przez Hypolite Petovan
rodzic c90314cd6a
commit e0777b6bc9
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -109,7 +109,10 @@ class L10n extends BaseObject
}
}
}
//if $_GET['lang'] is set force $_GET['lang']
if (isset($_GET['lang'])) {
$lang_list = [ $_GET['lang'] ];
}
// check if we have translations for the preferred languages and pick the 1st that has
foreach ($lang_list as $lang) {
if ($lang === 'en' || (file_exists("view/lang/$lang") && is_dir("view/lang/$lang"))) {