Bug #90776
closedCannot use tab category name with spaces in extension configuration
100%
Description
Regression appears in Typo3 V10 in "Settigs > Extension Configuration".
It's not possible to have a tab category name with space like "Site configuration", ext_conf_template.txt :
# cat=Site configuration/160/20_LangTitle; type=string; label=Language title: The language title (ex : English) langTitle = English
The regression appears in file sysext/install/Resources/Private/Partials/Settings/ExtensionConfiguration/ExtensionForm.html
In V9 :
<a class="text-capitalize" href="#{i:format.noSpace(value:'category-{extensionKey}-{categoryName}')}" aria-controls="category-{extensionKey}-{categoryName}" role="tab" data-toggle="tab">{categoryName}</a>
In V10 :
<a class="text-capitalize" href="#category-{extensionKey}-{categoryName}" aria-controls="category-{extensionKey}-{categoryName}" role="tab" data-toggle="tab">{categoryName}</a>
The ViewHelper "{i:format.noSpace()}" was removed so href look like this :
#category-my_ext-Site configuration
instead of :
#category-my_ext-Siteconfiguration
Updated by Georg Ringer over 4 years ago
- Status changed from New to Accepted
- Assignee set to Georg Ringer
I always suggest to use translated labels but will of course fit it.
Updated by Georg Ringer over 4 years ago
- Related to Task #89956: Install tool extension configuration template contains redundant code added
Updated by Gerrit Code Review over 4 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63764
Updated by Gerrit Code Review over 4 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/63764
Updated by Georg Ringer over 4 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 5abf6c38408adc6b735a3707515b2573c2cbd6da.