mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 00:16:12 +02:00

[TASK] Remove an obsolete version switch from the TCA configuration (#389)

This version switch was releveant for TYPO3 8LTS.
This commit is contained in:
Oliver Klee 2022-02-15 18:02:43 +01:00 committed by GitHub
parent 3a13b2dea3
commit a13e2f4598
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
<?php <?php
$tca = [ return [
'ctrl' => [ 'ctrl' => [
'title' => 'LLL:EXT:tea/Resources/Private/Language/locallang_db.xlf:tx_tea_domain_model_product_tea', 'title' => 'LLL:EXT:tea/Resources/Private/Language/locallang_db.xlf:tx_tea_domain_model_product_tea',
'label' => 'title', 'label' => 'title',
@ -54,9 +54,3 @@ $tca = [
], ],
], ],
]; ];
if (\TYPO3\CMS\Core\Utility\VersionNumberUtility::convertVersionNumberToInteger(TYPO3_version) < 8006000) {
$tca['columns']['description']['defaultExtras'] = 'richtext[]';
}
return $tca;