Actions
Bug #101848
closedPHP 8 warning in EXT:Backend\FrontendBackendUserAuthentication::getAllowedEditActions
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2023-09-05
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
11
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
if (!$conf['onlyCurrentPid'] || $pid == $GLOBALS['TSFE']->id) {
should be
if (!($conf['onlyCurrentPid'] ?? false) || $pid == $GLOBALS['TSFE']->id) {
Actions