diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2016-02-06 14:10:48 +0100 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2016-02-06 14:14:26 +0100 |
commit | 37705353c53a391aa44da7a30f10ed824a442cfc (patch) | |
tree | 904866ad646eb70f9c347e9c13b0626a29a4e505 /phpBB/phpbb/install/helper | |
parent | df505d772d2130427c36084f70aff7da8ca7342c (diff) | |
download | forums-37705353c53a391aa44da7a30f10ed824a442cfc.tar forums-37705353c53a391aa44da7a30f10ed824a442cfc.tar.gz forums-37705353c53a391aa44da7a30f10ed824a442cfc.tar.bz2 forums-37705353c53a391aa44da7a30f10ed824a442cfc.tar.xz forums-37705353c53a391aa44da7a30f10ed824a442cfc.zip |
[ticket/14460] Use the selected language with AJAX requests as well
PHPBB3-14460
Diffstat (limited to 'phpBB/phpbb/install/helper')
-rw-r--r-- | phpBB/phpbb/install/helper/config.php | 16 | ||||
-rw-r--r-- | phpBB/phpbb/install/helper/iohandler/factory.php | 2 |
2 files changed, 10 insertions, 8 deletions
diff --git a/phpBB/phpbb/install/helper/config.php b/phpBB/phpbb/install/helper/config.php index ab5af86320..f58925899b 100644 --- a/phpBB/phpbb/install/helper/config.php +++ b/phpBB/phpbb/install/helper/config.php @@ -227,18 +227,22 @@ class config $file_content = @file_get_contents($this->install_config_file); $serialized_data = trim(substr($file_content, 8)); - $this->installer_config = array(); - $this->progress_data = array(); - $this->navigation_data = array(); + $installer_config = array(); + $progress_data = array(); + $navigation_data = array(); if (!empty($serialized_data)) { $unserialized_data = json_decode($serialized_data, true); - $this->installer_config = (is_array($unserialized_data['installer_config'])) ? $unserialized_data['installer_config'] : array(); - $this->progress_data = (is_array($unserialized_data['progress_data'])) ? $unserialized_data['progress_data'] : array(); - $this->navigation_data = (is_array($unserialized_data['navigation_data'])) ? $unserialized_data['navigation_data'] : array(); + $installer_config = (is_array($unserialized_data['installer_config'])) ? $unserialized_data['installer_config'] : array(); + $progress_data = (is_array($unserialized_data['progress_data'])) ? $unserialized_data['progress_data'] : array(); + $navigation_data = (is_array($unserialized_data['navigation_data'])) ? $unserialized_data['navigation_data'] : array(); } + + $this->installer_config = array_merge($this->installer_config, $installer_config); + $this->progress_data = array_merge($this->progress_data, $progress_data); + $this->navigation_data = array_merge($this->navigation_data, $navigation_data); } /** diff --git a/phpBB/phpbb/install/helper/iohandler/factory.php b/phpBB/phpbb/install/helper/iohandler/factory.php index 52d24e49b2..1e8395760a 100644 --- a/phpBB/phpbb/install/helper/iohandler/factory.php +++ b/phpBB/phpbb/install/helper/iohandler/factory.php @@ -75,7 +75,5 @@ class factory throw new iohandler_not_implemented_exception(); break; } - - throw new iohandler_not_implemented_exception(); } } |