You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now try to Re-register again with the same E-Mail.
You will land on the page https://demo.contao.org/en/user.html again and the module has output a message "The activation mail has been re-sent to your e-mail address."
6. should not happen in my opinion and seems like a bug. Reason is because if I do not want to send any activation E-Mails this means I want to activate the users manually.
I read the Code and I think all that needs to be done is to change this
// Check for a follow-up registration (see #7992)if (\Input::post('email', true) != '' && ($objMember = \MemberModel::findUnactivatedByEmail(\Input::post('email', true))) !== null)
{
$this->resendActivationMail($objMember);
return;
}
to this
// Check for a follow-up registration (see #7992)if ($this->reg_activate && \Input::post('email', true) != '' && ($objMember = \MemberModel::findUnactivatedByEmail(\Input::post('email', true))) !== null)
{
$this->resendActivationMail($objMember);
return;
}
However I haven't tested what happens then, so maybe some additional changes are required.
Maybe in this case a message like Administrator has not activated your account yet would be appropriate, but not sure what would be best here seeing how this might require new translations to be made.
The text was updated successfully, but these errors were encountered:
Description
-----------
| Q | A
| -----------------| ---
| Fixed issues | Fixes#974
Add id to filter box for tl_module
Commits
-------
4f1d9202 Add id to filter box for tl_module (see #974)
Steps to Recreate the Issue in the Demo:
6.should not happen in my opinion and seems like a bug. Reason is because if I do not want to send any activation E-Mails this means I want to activate the users manually.I read the Code and I think all that needs to be done is to change this
to this
However I haven't tested what happens then, so maybe some additional changes are required.
Maybe in this case a message like
Administrator has not activated your account yetwould be appropriate, but not sure what would be best here seeing how this might require new translations to be made.The text was updated successfully, but these errors were encountered: