Skip to content

Commit

Permalink
[BUGFIX] Use correct action names for custom validators
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwemer committed Jun 3, 2024
1 parent d73c726 commit 43bf5a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Classes/Domain/Validator/AbstractValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ public function isFirstActionForValidation(): bool
{
$arguments = FrontendUtility::getArguments();
if ($this->isConfirmationActivated()) {
return $arguments['action'] === 'confirmation';
return $arguments['action'] === 'checkConfirmation';
}
return $arguments['action'] === 'create';
return $arguments['action'] === 'checkCreate';
}

/**
Expand Down

0 comments on commit 43bf5a8

Please sign in to comment.