aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
author3D-I <480857+3D-I@users.noreply.github.com>2019-12-22 01:12:46 +0100
committer3D-I <480857+3D-I@users.noreply.github.com>2019-12-22 01:12:46 +0100
commitd181713832d96b272c81c93d3f3a88bf848bdaac (patch)
tree4b7e5feb56b63ba4f51ee69a3ac0682a56f93ff9 /phpBB
parenta83b8e779238b734575dd4a96a67ed1aabc704c1 (diff)
downloadforums-d181713832d96b272c81c93d3f3a88bf848bdaac.tar
forums-d181713832d96b272c81c93d3f3a88bf848bdaac.tar.gz
forums-d181713832d96b272c81c93d3f3a88bf848bdaac.tar.bz2
forums-d181713832d96b272c81c93d3f3a88bf848bdaac.tar.xz
forums-d181713832d96b272c81c93d3f3a88bf848bdaac.zip
[ticket/16261] Missing check whether the index exists in install - PHP 7.4
PHPBB3-16261
Diffstat (limited to 'phpBB')
-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
{