1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 21:44:57 +02:00

[ticket/14320] Fix language selector in the installer

PHPBB3-14320
This commit is contained in:
Mate Bartus 2015-11-29 15:49:18 +01:00
parent 1316fe2084
commit 4aac878ec7

View File

@ -197,7 +197,7 @@ class helper
$this->language_cookie = $lang;
}
$lang = (!empty($lang) && strpos($lang, '/')) ? $lang : null;
$lang = (!empty($lang) && strpos($lang, '/') === false) ? $lang : null;
$this->render_language_select($lang);