diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-12-22 16:32:35 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-12-22 16:32:35 +0100 |
commit | 0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627 (patch) | |
tree | 4b7e5feb56b63ba4f51ee69a3ac0682a56f93ff9 | |
parent | a83b8e779238b734575dd4a96a67ed1aabc704c1 (diff) | |
parent | d181713832d96b272c81c93d3f3a88bf848bdaac (diff) | |
download | forums-0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627.tar forums-0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627.tar.gz forums-0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627.tar.bz2 forums-0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627.tar.xz forums-0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627.zip |
Merge pull request #5780 from 3D-I/ticket/16261
[ticket/16261] Missing check whether the index exists in install - PHP 7.4
-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 { |