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') {
Updated by Gerrit Code Review almost 2 years ago
- Status changed from New to Under Review
Patch set 1 for branch main of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77776
Updated by Gerrit Code Review almost 2 years ago
Patch set 1 for branch 11.5 of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/77785
Updated by Stefan Bürk almost 2 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 1a82876aefd1cd357a879cb3414055cd5bd6dec7.
Actions