Bug #84785
closedExecution order of hooks ['tslib/index_ts.php']['preprocessRequest'] and ['tslib/class.tslib_fe.php']['pageIndexing'] changed from 8.7 to 9.2
100%
Description
Between 8 LTS and 9.2 the order of the execution of the following hooks was changed:
8.7
- First: $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/index_ts.php']['preprocessRequest']
- Second: $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['pageIndexing']
9.2
- First: $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_fe.php']['pageIndexing']
- Second: $GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/index_ts.php']['preprocessRequest']
I could fix that by changing the order of the RequestMiddlewares in (sysext/frontend/Configuration/RequestMiddlewares.php)
from
'typo3/cms-frontend/tsfe' => [ 'target' => \TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization::class, 'after' => [ 'typo3/cms-core/normalized-params-attribute', ] ],
to
'typo3/cms-frontend/tsfe' => [ 'target' => \TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization::class, 'after' => [ 'typo3/cms-frontend/eid', ] ],
but since i do not know if this is intended or if this break the order for other hooks it would be nice when somebody with a deeper knowledge of TypoScriptFontendController can have a look on it
Updated by Gerrit Code Review over 6 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/56733
Updated by Timo Hund over 6 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset e45acadb8059cc6f27b863d0faa9d01f13ff841d.