Project

General

Profile

Bug #87688

Updated by Michael Telgkamp about 5 years ago

There is I have a problem with a page using a routeEnhancer of type Plugin. 

 * Calling If i call the URL with no additional parameters everything works fine (e.g. example.com/route/slug ) 
 * Calling If i call with a parameter up to 31 characters length (e.g. example.com/route/slug?abc4567890123456789012345678901 ), everything works fine 
 * Calling If i call with a parameter longer than 31 characters (e.g. example.com/route/slug?abc45678901234567890123456789012 ) there is an Exeption: *#1537633463 i get    `#1537633463 OutOfRangeException Hash not resolvable* resolvable` in @typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php:71@ typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php:71 
 * Calling with If I add a parameter only containing number    (e.g. example.com/route/slug?0 ) there is an Exception: *TypeError I get a `TypeError - Argument 1 passed to TYPO3\CMS\Core\Routing\Enhancer\VariableProcessor::resolveHash() must be of the type string, integer given* given` in @typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php:373@. typo3/sysext/core/Classes/Routing/Enhancer/VariableProcessor.php:373.

Back