diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2015-10-30 15:46:39 +0100 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2015-10-30 15:46:39 +0100 |
commit | 719f42c54a45ab669a983964c1e8a6f75a4d4b02 (patch) | |
tree | 1d24c76472e144e28ed9e42a20c3061ae103f0fc /phpBB/phpbb/install/controller | |
parent | 0990894cf87598f36bbc8c8bfbaa783267e17d51 (diff) | |
download | forums-719f42c54a45ab669a983964c1e8a6f75a4d4b02.tar forums-719f42c54a45ab669a983964c1e8a6f75a4d4b02.tar.gz forums-719f42c54a45ab669a983964c1e8a6f75a4d4b02.tar.bz2 forums-719f42c54a45ab669a983964c1e8a6f75a4d4b02.tar.xz forums-719f42c54a45ab669a983964c1e8a6f75a4d4b02.zip |
[ticket/14044] Fix language selection data loss
PHPBB3-14044
Diffstat (limited to 'phpBB/phpbb/install/controller')
-rw-r--r-- | phpBB/phpbb/install/controller/helper.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/controller/helper.php b/phpBB/phpbb/install/controller/helper.php index bfa9ec6238..fdb07d9c4a 100644 --- a/phpBB/phpbb/install/controller/helper.php +++ b/phpBB/phpbb/install/controller/helper.php @@ -204,6 +204,7 @@ class helper if ($lang !== null) { $this->language->set_user_language($lang, true); + $this->installer_config->set('user_language', $lang); } } |