Skip to content
Snippets Groups Projects
Commit 7ba02c9c authored by Markus Klein's avatar Markus Klein Committed by Georg Ringer
Browse files

[FOLLOWUP][!!!][TASK] Split service class of Import/Export (impexp)

Restore change that was reverted by accident.

Releases: master
Resolves: #72710
Change-Id: Iaeb622f89c69eb435bed79c60a18052e419dca28
Reviewed-on: https://review.typo3.org/45974


Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent a62ea81b
Branches
Tags
No related merge requests found
......@@ -289,7 +289,7 @@ abstract class ImportExport
// Check extension dependencies:
if (is_array($this->dat['header']['extensionDependencies'])) {
foreach ($this->dat['header']['extensionDependencies'] as $extKey) {
if (!ExtensionManagementUtility::isLoaded($extKey)) {
if (!empty($extKey) && !ExtensionManagementUtility::isLoaded($extKey)) {
$this->error('DEPENDENCY: The extension with key "' . $extKey . '" must be installed!');
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment