From bf1caf81bbcc7f74ee54c9aef7c88c1d934cefe6 Mon Sep 17 00:00:00 2001 From: Stefan Busemann Date: Thu, 14 Nov 2024 15:46:20 +0100 Subject: [PATCH] [BUGFIX] wrong default action for resend plugin resolves #617 --- ext_localconf.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext_localconf.php b/ext_localconf.php index 34e116994..de22a8f7f 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -71,10 +71,10 @@ 'Femanager', 'ResendConfirmationMail', [ - \In2code\Femanager\Controller\NewController::class => 'confirmCreateRequest, createStatus, resendConfirmationMail, resendConfirmationDialogue', + \In2code\Femanager\Controller\NewController::class => 'resendConfirmationDialogue, resendConfirmationMail, confirmCreateRequest, createStatus', ], [ - \In2code\Femanager\Controller\NewController::class => 'confirmCreateRequest, createStatus, resendConfirmationMail, resendConfirmationDialogue', + \In2code\Femanager\Controller\NewController::class => 'resendConfirmationDialogue, resendConfirmationMail, confirmCreateRequest, createStatus', ], \TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT );