Skip to content

Commit

Permalink
[TASK] Make ExtensionManagementServiceTest notice free
Browse files Browse the repository at this point in the history
Releases: master
Resolves: #84380
Change-Id: Iff2cf91dbd4bc7ae43aa8d81d3b88edc7c2fef67
Reviewed-on: https://review.typo3.org/56257
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: Tymoteusz Motylewski <t.motylewski@gmail.com>
Tested-by: Tymoteusz Motylewski <t.motylewski@gmail.com>
  • Loading branch information
janhelke authored and tmotyl committed Mar 16, 2018
1 parent 5734b7a commit ad2f598
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 51 deletions.
Expand Up @@ -361,7 +361,7 @@ protected function installDependencies(array $installQueue)
foreach ($installQueue as $extensionKey => $_) {
$this->installUtility->install($extensionKey);
$this->emitHasInstalledExtensionSignal($extensionKey);
if (!is_array($resolvedDependencies['installed'])) {
if (!isset($resolvedDependencies['installed']) || !is_array($resolvedDependencies['installed'])) {
$resolvedDependencies['installed'] = [];
}
$resolvedDependencies['installed'][$extensionKey] = $extensionKey;
Expand Down

0 comments on commit ad2f598

Please sign in to comment.