Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUGFIX] Use PSR-14 event registration for TYPO3 v10.2+
Signal registration via SignalSlotDispatcher has been deprecated in TYPO3 v10.4: https://docs.typo3.org/c/typo3/cms-core/10.4/en-us/Changelog/10.4/Deprecation-90625-ExtbaseSignalSlotDispatcher.html The "EditDocumentController::initAfter" signal has been deprecated in TYPO3 v10.2: https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/10.2/Deprecation-89733-SignalSlotsInCoreExtensionMigratedToPSR-14Events.html .. and replaced with PSR-14 events: https://docs.typo3.org/c/typo3/cms-core/10.4/en-us/Changelog/10.2/Feature-89733-NewPSR-14EventsForExistingSignalSlotsInCoreExtension.html Flux generated a deprecation notice on TYPO3 10.4 because of that: > The signal "initAfter" in "TYPO3\CMS\Backend\Controller\EditDocumentController" > is deprecated and will stop working in TYPO3 11.0. > Use the PSR-14 event: "TYPO3\CMS\Backend\Controller\Event\AfterFormEnginePageInitializedEvent" > in typo3/sysext/extbase/Classes/SignalSlot/Dispatcher.php line 438 Conflicts: ext_localconf.php