Actions
Bug #87688
closedrouteEnhancer has problem with additional parameter longer than 31 characters or number as parameter
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Site Handling, Site Sets & Routing
Target version:
-
Start date:
2019-02-11
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Routing
Complexity:
Is Regression:
Sprint Focus:
Description
There is a problem with a page using a routeEnhancer of type Plugin.
- Calling the URL with no additional parameters works fine (e.g. example.com/route/slug )
- Calling with a parameter up to 31 characters length (e.g. example.com/route/slug?abc4567890123456789012345678901 ), everything works fine
- Calling with a parameter longer than 31 characters (e.g. example.com/route/slug?abc45678901234567890123456789012 ) there is an Exeption: #1537633463 OutOfRangeException Hash not resolvable in
typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php:71
- Calling with a parameter only containing number (e.g. example.com/route/slug?0 ) there is an Exception: TypeError - Argument 1 passed to TYPO3\CMS\Core\Routing\Enhancer\VariableProcessor::resolveHash() must be of the type string, integer given in
typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php:373
.
Actions