Skip to content

Commit

Permalink
Merge pull request #532 from T3Voila/mergify/bp/8.1.x/pr-529
Browse files Browse the repository at this point in the history
[BUGFIX] PHP undefined array key while cut&paste tt_content in list view (backport #529)
  • Loading branch information
opi99 authored Sep 20, 2023
2 parents 0d39f20 + 173073e commit ece87fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Service/DataHandling/DataHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function moveRecord_firstElementPostProcess(
[$table, $uid, $destPid, $sourceRecordBeforeMove, $updateFields]
);
}
if ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tx_templavoilaplus_api']['apiIsRunningTCEmain']) {
if ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tx_templavoilaplus_api']['apiIsRunningTCEmain'] ?? false) {
return;
}
if ($table != 'tt_content') {
Expand Down

0 comments on commit ece87fe

Please sign in to comment.