diff options
author | 3D-I <480857+3D-I@users.noreply.github.com> | 2019-12-22 01:12:46 +0100 |
---|---|---|
committer | 3D-I <480857+3D-I@users.noreply.github.com> | 2019-12-22 01:12:46 +0100 |
commit | d181713832d96b272c81c93d3f3a88bf848bdaac (patch) | |
tree | 4b7e5feb56b63ba4f51ee69a3ac0682a56f93ff9 /phpBB/phpbb/install | |
parent | [3.3.x] Update version numbers to 3.3.0-RC2-dev (diff) | |
download | phpbb-d181713832d96b272c81c93d3f3a88bf848bdaac.tar.gz phpbb-d181713832d96b272c81c93d3f3a88bf848bdaac.tar.bz2 phpbb-d181713832d96b272c81c93d3f3a88bf848bdaac.zip |
[ticket/16261] Missing check whether the index exists in install - PHP 7.4
PHPBB3-16261
Diffstat (limited to 'phpBB/phpbb/install')
-rw-r--r-- | phpBB/phpbb/install/module_base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/install/module_base.php b/phpBB/phpbb/install/module_base.php index 93c10bd656..4464a89716 100644 --- a/phpBB/phpbb/install/module_base.php +++ b/phpBB/phpbb/install/module_base.php @@ -131,7 +131,7 @@ abstract class module_base implements module_interface $name, )); - $this->install_config->increment_current_task_progress($this->task_step_count[$name]); + $this->install_config->increment_current_task_progress($this->task_step_count[$name] ?? false); } else { |