Actions
Bug #96869
closedUndefined array key in EXT:frontend
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
-
Start date:
2022-02-13
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
8.0
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Remote Sprint
Description
PHP Warning: Undefined array key "versioningWS" in typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 6228
Line 6228 is
&& !empty($GLOBALS['TCA'][$table]['ctrl']['versioningWS'])
should be
&& !empty(($GLOBALS['TCA'][$table]['ctrl']['versioningWS'] ?? ['versioningWS'])['versioningWS'])
Thanks
Actions