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
Branches
Tags
No related merge requests found
......@@ -2,7 +2,7 @@
return [
'ctrl' => [
'title' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:be_dashboard',
'label' => 'label',
'label' => 'title',
'tstamp' => 'tstamp',
'crdate' => 'crdate',
'cruser_id' => 'cruser_id',
......@@ -18,10 +18,10 @@ return [
'typeicon_classes' => [
'default' => 'content-dashboard'
],
'searchFields' => 'identifier,label,configuration'
'searchFields' => 'identifier,title,configuration'
],
'interface' => [
'showRecordFieldList' => 'hidden,identifier,label,configuration,starttime,endtime'
'showRecordFieldList' => 'hidden,identifier,title,configuration,starttime,endtime'
],
'columns' => [
'hidden' => [
......@@ -69,8 +69,8 @@ return [
'eval' => 'required'
]
],
'label' => [
'label' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:label',
'title' => [
'label' => 'LLL:EXT:dashboard/Resources/Private/Language/locallang_tca.xlf:title',
'config' => [
'type' => 'input',
'size' => 30,
......@@ -90,7 +90,7 @@ return [
'1' => [
'showitem' => '
--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,
hidden, --palette--;;timeRestriction,
--div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
......
......@@ -9,8 +9,8 @@
<trans-unit id="identifier" xml:space="preserve">
<source>Identifier</source>
</trans-unit>
<trans-unit id="label" xml:space="preserve">
<source>Label</source>
<trans-unit id="title" xml:space="preserve">
<source>Title</source>
</trans-unit>
<trans-unit id="configuration" xml:space="preserve">
<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