Skip to content
Snippets Groups Projects
Commit eade861a authored by Christian Eßl's avatar Christian Eßl Committed by Benni Mack
Browse files

[BUGFIX] Change no_follow, no_index labels to their new inverted labels

The fields no_follow and no_index were inverted some time ago, but still
retained their previous non-inverted labels in TCA. These were not
actually shown when editing a page, but could be read in by other parts
of the backend.
This lead to misleading labels in both the "Display information" window
as well as the "Info -> Pagetree Overview" module.

Resolves: #88812
Releases: master, 9.5
Change-Id: Ie1bddeae20f0ffb3958bb07dab78d68dc68eff74
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63312


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent de6af8b1
Branches
Tags
No related merge requests found
...@@ -76,7 +76,7 @@ $tca = [ ...@@ -76,7 +76,7 @@ $tca = [
'exclude' => true, 'exclude' => true,
'l10n_mode' => 'exclude', 'l10n_mode' => 'exclude',
'onChange' => 'reload', 'onChange' => 'reload',
'label' => 'LLL:EXT:seo/Resources/Private/Language/locallang_tca.xlf:pages.no_index', 'label' => 'LLL:EXT:seo/Resources/Private/Language/locallang_tca.xlf:pages.no_index_formlabel',
'config' => [ 'config' => [
'type' => 'check', 'type' => 'check',
'renderType' => 'checkboxToggle', 'renderType' => 'checkboxToggle',
...@@ -92,7 +92,7 @@ $tca = [ ...@@ -92,7 +92,7 @@ $tca = [
'no_follow' => [ 'no_follow' => [
'exclude' => true, 'exclude' => true,
'l10n_mode' => 'exclude', 'l10n_mode' => 'exclude',
'label' => 'LLL:EXT:seo/Resources/Private/Language/locallang_tca.xlf:pages.no_follow', 'label' => 'LLL:EXT:seo/Resources/Private/Language/locallang_tca.xlf:pages.no_follow_formlabel',
'config' => [ 'config' => [
'type' => 'check', 'type' => 'check',
'renderType' => 'checkboxToggle', 'renderType' => 'checkboxToggle',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment