diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-12-09 19:54:58 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-12-09 19:54:58 +0100 |
commit | 37a3bd131bf82becc436c72a4e01975f4381d4f6 (patch) | |
tree | 5e0f583cd977a4251c1f6c447e513122b364fa66 /phpBB/phpbb/install | |
parent | 54751991ad1af8c60416fac5a58abfd5d9f30f93 (diff) | |
download | forums-37a3bd131bf82becc436c72a4e01975f4381d4f6.tar forums-37a3bd131bf82becc436c72a4e01975f4381d4f6.tar.gz forums-37a3bd131bf82becc436c72a4e01975f4381d4f6.tar.bz2 forums-37a3bd131bf82becc436c72a4e01975f4381d4f6.tar.xz forums-37a3bd131bf82becc436c72a4e01975f4381d4f6.zip |
[ticket/14894] Use correct config name for conflicts archive extension
PHPBB3-14894
Diffstat (limited to 'phpBB/phpbb/install')
-rw-r--r-- | phpBB/phpbb/install/module/update_filesystem/task/show_file_status.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/module/update_filesystem/task/show_file_status.php b/phpBB/phpbb/install/module/update_filesystem/task/show_file_status.php index 7f18950cf6..cf1e4cf4ac 100644 --- a/phpBB/phpbb/install/module/update_filesystem/task/show_file_status.php +++ b/phpBB/phpbb/install/module/update_filesystem/task/show_file_status.php @@ -92,7 +92,7 @@ class show_file_status extends task_base // Create archive for merge conflicts if (!empty($merge_conflicts)) { - $compression_method = $this->installer_config->get('compression_method', ''); + $compression_method = $this->installer_config->get('file_update_compression', ''); $conflict_archive = $this->file_updater->init($compression_method); $this->installer_config->set('update_file_conflict_archive', $conflict_archive); |