Skip to content

Commit

Permalink
[BUGFIX] update wizards registration
Browse files Browse the repository at this point in the history
for TYPO3 > 11 PHP Attributes are used

Relates to: #549
  • Loading branch information
achimfritz committed Nov 8, 2024
1 parent f3c0225 commit 13bfec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tcemain.php']['processDatamapClass']
);

if ($packageManager->isPackageActive('typo3/cms-install')) {
if ($packageManager->isPackageActive('typo3/cms-install') && $typo3Version->getMajorVersion() < 12) {
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update'][B13\Container\Updates\ContainerMigrateSorting::IDENTIFIER]
= B13\Container\Updates\ContainerMigrateSorting::class;
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['ext/install']['update'][B13\Container\Updates\ContainerDeleteChildrenWithWrongPid::IDENTIFIER]
Expand Down

0 comments on commit 13bfec3

Please sign in to comment.