Actions
Bug #90196
closedWrong rootline order in backend condition matcher
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2020-01-24
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When the Backend Condition Matcher is instantiated in BackendUtility::getPagesTSconfig() a ksort ist applied to the rootline
$rootLine = self::BEgetRootLine($id, '', true); // Order correctly ksort($rootLine); ... $matcher = GeneralUtility::makeInstance(ConditionMatcher::class, null, $id, $rootLine);
However the ConditionMatcher calls BEgetRootLine when instantiated without a rootline but does not perform a ksort, which leads to an inverted array ordering.
Updated by Gerrit Code Review almost 5 years ago
- Status changed from New to Under Review
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63024
Updated by Susanne Moog almost 5 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 4e913f2af2bc0390963ba4c5f26359a51cc5673a.
Actions