1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-03 04:55:36 +02:00

Merge pull request #4053 from CHItA/ticket/14320

[ticket/14320] Fix language selector in the installer
This commit is contained in:
Marc Alexander 2015-12-01 14:35:53 +01:00
commit c2dddf296d

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);