We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ec77e1 commit 40fda93Copy full SHA for 40fda93
Classes/Updates/SwitchableControllerActionsPluginUpdater.php
@@ -113,6 +113,12 @@ public function performMigration(): bool
113
foreach ($records as $record) {
114
$flexFormData = GeneralUtility::xml2array($record['pi_flexform']);
115
$flexForm = $this->flexFormService->convertFlexFormContentToArray($record['pi_flexform']);
116
+ if (!is_array($flexForm)) {
117
+ $flexForm = [];
118
+ }
119
+ if (!isset($flexForm['switchableControllerActions'])) {
120
+ $flexForm['switchableControllerActions'] = '';
121
122
$targetListType = $this->getTargetListType(
123
$record['list_type'],
124
$flexForm['switchableControllerActions']
0 commit comments