diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-02-28 20:49:18 +0100 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-02-28 20:49:18 +0100 |
commit | 8ec1a60156f66dd4fe0f0f6e2cfbee1c79132771 (patch) | |
tree | 902e82f58c7d7ad5c3d539f21e6c84544dacf3a1 /phpBB/phpbb/install/console/command | |
parent | 5bdfc6167ba13fc525470f89602889ff5bc3ed79 (diff) | |
download | forums-8ec1a60156f66dd4fe0f0f6e2cfbee1c79132771.tar forums-8ec1a60156f66dd4fe0f0f6e2cfbee1c79132771.tar.gz forums-8ec1a60156f66dd4fe0f0f6e2cfbee1c79132771.tar.bz2 forums-8ec1a60156f66dd4fe0f0f6e2cfbee1c79132771.tar.xz forums-8ec1a60156f66dd4fe0f0f6e2cfbee1c79132771.zip |
[ticket/14499] Add missing config settings
PHPBB3-14499
Diffstat (limited to 'phpBB/phpbb/install/console/command')
-rw-r--r-- | phpBB/phpbb/install/console/command/update/update.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/console/command/update/update.php b/phpBB/phpbb/install/console/command/update/update.php index 8e0d45172c..dfac13d5d7 100644 --- a/phpBB/phpbb/install/console/command/update/update.php +++ b/phpBB/phpbb/install/console/command/update/update.php @@ -170,7 +170,10 @@ class update extends \phpbb\console\command\command $iohandler->set_input('update_type', $config['type']); $iohandler->set_input('submit_update', 'submit'); - $iohandler->set_input('method', '.tar'); + $iohandler->set_input('compression_method', '.tar'); + $iohandler->set_input('method', 'direct_file'); $iohandler->set_input('submit_update_file', 'submit'); + + $iohandler->set_input('submit_continue_file_update', 'submit'); } } |