Actions
Bug #87656
closedSlugs error if title has "/" in extbase extension
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2019-02-05
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If you have a title in an extension like "Mein Titel hat / Slash / im Titel" TYPO3 occures error
(1/1) Symfony\Component\Routing\Exception\InvalidParameterException Parameter "tx_xxx_xxx__frage" for route "tx_xxx_xxx_0" must match "[^/]++" ("mein-titel-hat-/-slash-/-im-titel" given) to generate a corresponding URL.
Here is my TCA for slug
'path_segment' => [ 'exclude' => true, 'label' => 'URL Segment', 'config' => [ 'type' => 'slug', 'prependSlash' => true, 'generatorOptions' => [ 'fields' => ['frage'], 'prefixParentPageSlug' => false, ], 'fallbackCharacter' => '-', 'eval' => 'uniqueInSite', ], ],
So "/" in url should be deleted automatically
Actions