Skip to content
Snippets Groups Projects
Commit ffa646af authored by Christian Eßl's avatar Christian Eßl Committed by Daniel Goerz
Browse files

[BUGFIX] Fix wrong field name in be_dashboard TCA

The TCA for be_dashboard was using a field name that doesn't exist
in the database table.

Resolves: #90477
Releases: master
Change-Id: Icb78d89a723d0d1030bf31d0645c0f31592a67e2
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63360


Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarDaniel Goerz <daniel.goerz@posteo.de>
parent c6f21fb1
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
return [ return [
'ctrl' => [ 'ctrl' => [
'title' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:be_dashboard', 'title' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:be_dashboard',
'label' => 'label', 'label' => 'title',
'tstamp' => 'tstamp', 'tstamp' => 'tstamp',
'crdate' => 'crdate', 'crdate' => 'crdate',
'cruser_id' => 'cruser_id', 'cruser_id' => 'cruser_id',
...@@ -18,10 +18,10 @@ return [ ...@@ -18,10 +18,10 @@ return [
'typeicon_classes' => [ 'typeicon_classes' => [
'default' => 'content-dashboard' 'default' => 'content-dashboard'
], ],
'searchFields' => 'identifier,label,configuration' 'searchFields' => 'identifier,title,configuration'
], ],
'interface' => [ 'interface' => [
'showRecordFieldList' => 'hidden,identifier,label,configuration,starttime,endtime' 'showRecordFieldList' => 'hidden,identifier,title,configuration,starttime,endtime'
], ],
'columns' => [ 'columns' => [
'hidden' => [ 'hidden' => [
...@@ -69,8 +69,8 @@ return [ ...@@ -69,8 +69,8 @@ return [
'eval' => 'required' 'eval' => 'required'
] ]
], ],
'label' => [ 'title' => [
'label' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:label', 'label' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:title',
'config' => [ 'config' => [
'type' => 'input', 'type' => 'input',
'size' => 30, 'size' => 30,
...@@ -90,7 +90,7 @@ return [ ...@@ -90,7 +90,7 @@ return [
'1' => [ '1' => [
'showitem' => ' 'showitem' => '
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general, --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
identifier,label,configuration, identifier,title,configuration,
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access, --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
hidden, --palette--;;timeRestriction, hidden, --palette--;;timeRestriction,
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended, --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
<trans-unit id="identifier" xml:space="preserve"> <trans-unit id="identifier" xml:space="preserve">
<source>Identifier</source> <source>Identifier</source>
</trans-unit> </trans-unit>
<trans-unit id="label" xml:space="preserve"> <trans-unit id="title" xml:space="preserve">
<source>Label</source> <source>Title</source>
</trans-unit> </trans-unit>
<trans-unit id="configuration" xml:space="preserve"> <trans-unit id="configuration" xml:space="preserve">
<source>Configuration</source> <source>Configuration</source>
......
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