Actions
Bug #95824
closedUndefined array key in install tool
Start date:
2021-10-30
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
Two if statements in the install sysext's UpgradeWizardsService.php are causing undefined array errors in PHP 8.
Line 165 should be: if (!is_array($adds['tables'] ?? false)) {
Line 175 should be: if (!is_array($adds['columns'] ?? false)) {
Line 185 was updated in the same way when fixing #94425.
Actions