Skip to content

Commit b5e5ca4

Browse files
committed
[BUGFIX] Align ext_emconf.php description with composer title handling in v14
Since TYPO3 v14, the extension title is populated from `composer.json`. The Extension Manager validates that the composer description equals `$emConf['title'] . ' - ' . $emConf['description']`. The current `ext_emconf.php` duplicated the extension name in the description, causing `EXTENSION_TITLE_MISSING` to be reported. This change removes the redundant prefix and restores consistency with `composer.json` handling. References: [Breaking: #108304 - Populate extension title from composer.json](https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/14.0/Breaking-108304-PopulateExtensionTitleFromComposerJson.html)
1 parent 8671083 commit b5e5ca4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
$EM_CONF[$_EXTKEY] = [
44
'title' => 'TYPO3 CMS Content Blocks',
5-
'description' => 'TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML',
5+
'description' => 'Content Types API | Define reusable components via YAML',
66
'category' => 'be',
77
'author' => 'TYPO3 Content Types Team',
88
'author_email' => '[email protected]',

0 commit comments

Comments
 (0)