Actions
Bug #87070
closedA redirect source called with an invalid pageType leads to error
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2018-12-04
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In the Redirect Middleware the TSFE is partially bootstrapped and $GLOBALS['TYPO3_CONF_VARS']['FE']['pageUnavailable_handling']
is set to false
for this.
This leads to the following behavior:
- Create a redirect for any source, e.g. /foo/bar
- Visit /foo/bar/?type=12345678 (note: the typeNum must not be configured)
My first expectation would be that the type is ignored and the redirect is executed.
My second expectation would be that my configured pageUnavailable_handling kicks in for the undefined PageType.
But none of the expectations are met, instead the default TYPO3 error (depending on your displayErrors setting) is displayed
Actions