This commit is contained in:
Jeroen De meerleer 2018-12-29 21:35:35 +01:00 committed by Hypolite Petovan
parent ab463bbd21
commit 2bfc3d1a0c
1 changed files with 3 additions and 2 deletions

View File

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