mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/14320] Fix language selector in the installer
PHPBB3-14320
This commit is contained in:
parent
1316fe2084
commit
4aac878ec7
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ class helper
|
||||||
$this->language_cookie = $lang;
|
$this->language_cookie = $lang;
|
||||||
}
|
}
|
||||||
|
|
||||||
$lang = (!empty($lang) && strpos($lang, '/')) ? $lang : null;
|
$lang = (!empty($lang) && strpos($lang, '/') === false) ? $lang : null;
|
||||||
|
|
||||||
$this->render_language_select($lang);
|
$this->render_language_select($lang);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue