Actions
Bug #99870
closedUndefined array key "templateName" in FormEditorController.php line 548
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Form Framework
Target version:
-
Start date:
2023-02-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.1
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
PHP Warning: Undefined array key "templateName" in /sysext/form/Classes/Controller/FormEditorController.php line 548
if ($editorConfiguration['templateName'] === 'Inspector-PropertyGridEditor') {
Fix:
if (isset($editorConfiguration['templateName']) && $editorConfiguration['templateName'] === 'Inspector-PropertyGridEditor') {
Actions