Skip to content

Commit

Permalink
[BUGFIX] Use extension key instead of an array for data reload
Browse files Browse the repository at this point in the history
Due to some database changes during the installation process of an
extension, the patch https://review.typo3.org/57486/ misses to pass
the extension key instead of the enriched extension information array.

Resolves: #85915
Related: #79094
Releases: master, 8.7
Change-Id: I708a99f47a2c493f68d224b9ffca4ec6c008f827
Reviewed-on: https://review.typo3.org/57979
Reviewed-by: Nicole Cordes <typo3@cordes.co>
Tested-by: Nicole Cordes <typo3@cordes.co>
Reviewed-by: Joerg Kummer <typo3@enobe.de>
Tested-by: Joerg Kummer <typo3@enobe.de>
Tested-by: TYPO3com <no-reply@typo3.com>
Reviewed-by: Helmut Hummel <typo3@helhum.io>
Tested-by: Helmut Hummel <typo3@helhum.io>
  • Loading branch information
sgrossberndt authored and helhum committed Aug 21, 2018
1 parent 18cffa1 commit ff4341c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -170,7 +170,7 @@ protected function reloadExtensionDataAction($extension)
$registry = GeneralUtility::makeInstance(Registry::class);
$registry->remove('extensionDataImport', $registryKey);

$this->installUtility->processExtensionSetup($extension);
$this->installUtility->processExtensionSetup($extension['key']);

$this->redirect('index', 'List');
}
Expand Down

0 comments on commit ff4341c

Please sign in to comment.