aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-12-22 16:32:35 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-12-22 16:32:35 +0100
commit0e974eb49a8fcbf9c52ecd7cc4db1c6d4db86627 (patch)
tree4b7e5feb56b63ba4f51ee69a3ac0682a56f93ff9
parenta83b8e779238b734575dd4a96a67ed1aabc704c1 (diff)
parentd181713832d96b272c81c93d3f3a88bf848bdaac (diff)
downloadforums-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.php2
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
{