Actions
Bug #87864
closedBackendUtility::BEgetRootLine does not respect additionalFields on second call
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend API
Target version:
-
Start date:
2019-03-08
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The function BackendUtility::BEgetRootLine does not respect the additionalFields on a second call to the same uid, because the method getPageForRootline does not respect the given additionalFields in its identifier to store fetched records.
The two of the calls below fetch the same results. The second call is missing the additional field.
BackendUtility::BEgetRootLine(1);
BackendUtility::BEgetRootLine(1, '', false, ['somefield']);
Actions