Actions
Bug #83802
closedEpic #83894: PSR-15 Initiative
Timetracker and pre-process middleware ordering is incorrect
Start date:
2018-02-07
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The middlware's introduced in https://review.typo3.org/c/55537/ did not preserve the sequence as used before.
timetracker has been marked to be executed after the preprocessing:
'typo3/cms-frontend/timetracker' => [ 'target' => \TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization::class, 'after' => [ 'typo3/cms-frontend/preprocessing' ] ]
'timetracker' needs to be executed first, then the request 'preprocessing', as done before the mentioned change:
// Starting time tracking $configuredCookieName = trim($GLOBALS['TYPO3_CONF_VARS']['BE']['cookieName']) ?: 'be_typo_user'; /** @var TimeTracker $timeTracker */ $timeTracker = GeneralUtility::makeInstance(TimeTracker::class, ($request->getCookieParams()[$configuredCookieName] ? true : false)); $timeTracker->start(); // Hook to preprocess the current request foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/index_ts.php']['preprocessRequest'] ?? [] as $hookFunction) { $hookParameters = []; GeneralUtility::callUserFunction($hookFunction, $hookParameters, $hookParameters); }
Updated by Gerrit Code Review almost 7 years ago
- Status changed from New to Under Review
Patch set 3 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/55594
Updated by Benjamin Franzke almost 7 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 5515ba25c5d8498b0be19aa4ebddb745d9192457.
Actions