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
Updated by Georg Ringer almost 6 years ago
- Status changed from New to Needs Feedback
Check out feature #86740 which is available in 9 as well
'type' => 'slug', 'config' => [ 'generatorOptions' => [ 'fields' => ['title'], 'replacements' => [ '/' => '' ], ] 'fallbackCharacter' => '-', 'prependSlash' => true, 'eval' => 'uniqueInPid' ]
is this enough for you?
Updated by Georg Ringer almost 6 years ago
- Is duplicate of Bug #86740: Using slash in slug in extension record throws exception in frontend added
Updated by Georg Ringer almost 6 years ago
- Status changed from Needs Feedback to Closed
Updated by Daniel Reichel over 5 years ago
- Related to Bug #88291: Exception thrown if slash in route field of PersistedPatternMapper aspect added
Actions