Skip to content
Snippets Groups Projects
Commit f7836db4 authored by Fabian Galinski's avatar Fabian Galinski :pouting_cat:
Browse files

[BUGFIX] The author TCA cannot be opened in TYPO3 8

parent c950baff
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@
* This copyright notice MUST APPEAR in all copies of the script!
*/
return [
$configuration = [
'ctrl' => [
'title' => 'LLL:EXT:sg_news/Resources/Private/Language/locallang_db.xlf:tx_sgnews_domain_model_author',
'label' => 'name',
......@@ -197,3 +197,12 @@ return [
],
]
];
// The slug field isn't available for TYPO3 8 and below.
if (TYPO3\CMS\Core\Utility\VersionNumberUtility::convertVersionNumberToInteger(TYPO3_version) < 9000000) {
unset($configuration['columns']['path_segment']);
$configuration['types'] = str_replace('path_segment', '', $configuration['types']);
}
return $configuration;
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