Skip to content
Snippets Groups Projects
Commit b9e5faff authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Fixed a bug, preventing automatic registration when mixed with other finishers

parent 88d1d0a4
No related branches found
No related tags found
No related merge requests found
......@@ -83,9 +83,9 @@ class FormEditorController extends \TYPO3\CMS\Form\Controller\FormEditorControll
foreach ($finishers as $finisher) {
// if one finisher prevents automatic registration, exit this function
// if the current finisher prevents automatic registration, exit this iteration
if (!$finisher['options']['automaticRegistration']) {
return;
continue;
}
if (!\in_array($finisher['identifier'], self::MAIL_FINISHER, TRUE)) {
......
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