Project

General

Profile

Actions

Bug #84785

closed

Execution order of hooks ['tslib/index_ts.php']['preprocessRequest'] and ['tslib/class.tslib_fe.php']['pageIndexing'] changed from 8.7 to 9.2

Added by Timo Hund almost 6 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
Start date:
2018-04-18
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

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

Actions #1

Updated by Timo Hund almost 6 years ago

  • Description updated (diff)
Actions #2

Updated by Timo Hund almost 6 years ago

  • Description updated (diff)
Actions #3

Updated by Gerrit Code Review almost 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

Actions #4

Updated by Timo Hund almost 6 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #5

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF