Skip to content
Snippets Groups Projects
Commit 83ee15f9 authored by Tim Wagner's avatar Tim Wagner
Browse files

[BUGFIX] Fix datetime input field TCA config on news pages

parent b3fe5ca4
No related branches found
No related tags found
No related merge requests found
......@@ -315,9 +315,10 @@ $GLOBALS['TCA']['pages']['types'][\SGalinski\SgNews\Utility\BackendNewsUtility::
],
'lastUpdated' => [
'exclude' => TRUE,
'label' => 'LLL:EXT:cms/locallang_tca.xlf:pages.lastUpdated',
'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:pages.lastUpdated',
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'size' => '13',
'max' => '20',
'eval' => 'datetime',
......@@ -332,6 +333,7 @@ $GLOBALS['TCA']['pages']['types'][\SGalinski\SgNews\Utility\BackendNewsUtility::
'label' => 'LLL:EXT:sg_news/Resources/Private/Language/locallang_db.xlf:pages.tx_sgnews_date_end',
'config' => [
'type' => 'input',
'renderType' => 'inputDateTime',
'size' => '13',
'max' => '20',
'eval' => 'datetime',
......
......@@ -102,7 +102,7 @@ $configuration = [
],
'l10n_parent' => [
'displayCond' => 'FIELD:sys_language_uid:>:0',
'label' => 'LLL:EXT:lang/Resources/Private/Language/locallang_general.xlf:LGL.l18n_parent',
'label' => 'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.l18n_parent',
'config' => [
'type' => 'select',
'renderType' => 'selectSingle',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment