-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confirmation link can be clicked multiple times #559
Comments
I can confirm that issue and the However, I do not find it necessary to redirect to the |
Can confirm the issue, |
Are there any news on this issue? |
I ran into this problem, too. A simple return true; is not enough. The redirect response object needs to be returned and used in the actual action. |
The same problem exists for other actions as well. I provided a PR which fixes a redirects. |
If the user clicks the link in the confirmation email multiple times, the finishers get executed every time. But they should get executed only once.
A
return true;
in theif ($user->getTxFemanagerConfirmedbyuser())
in NewController::statusUserConfirmation() helps. Can someony confirm this?Edit: Removed "but then the userConfirmationRedirect is not executed anymore"
The text was updated successfully, but these errors were encountered: