Skip to content
Snippets Groups Projects
Commit 76b645b7 authored by Thomas Hohn's avatar Thomas Hohn Committed by Markus Klein
Browse files

[BUGFIX] Fix runtime-error in traverseFlexFormXMLData

Fix that run-time error will be thrown if
$dataStructureArray['sheets'] is not an array.

Fixes: #79426
Releases: master
Change-Id: I9b7549a5b79d0d5b8b2e27df407879812c1aa491
Reviewed-on: https://review.typo3.org/51399


Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
Tested-by: default avatarMarkus Klein <markus.klein@typo3.org>
parent 95205e5a
Branches
Tags
......@@ -777,6 +777,10 @@ class FlexFormTools
if (!is_array($editData)) {
return 'Parsing error: ' . $editData;
}
// Check if $dataStructureArray['sheets'] is indeed an array before loop or it will crash with runtime error
if (!is_array($dataStructureArray['sheets'])) {
return 'Data Structure ERROR: sheets is defined but not an array for table ' . $table . (isset($row['uid']) ? ' and uid ' . $row['uid'] : '');
}
// Traverse languages:
foreach ($dataStructureArray['sheets'] as $sheetKey => $sheetData) {
// Render sheet:
......
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