We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
yii-user/models/UserRecoveryForm.php
array('login_or_email', 'match', 'pattern' => '/^[[email protected]\s,]+$/u','message' => UserModule::t("Incorrect symbols (A-z0-9)."))
It didn't work properly. I tried to give it string "[email protected]" and it fails. I changed it to
array('login_or_email', 'match', 'pattern' => '/^[A-Za-z0-9@.\-\s,]+$/u','message' => UserModule::t("Incorrect symbols (A-z0-9).")),
However i'm not sure is it right, but now it passes validation
The text was updated successfully, but these errors were encountered:
Also, i'he noticed, that in original case, it passes client validation, but on the server side it fails
Sorry, something went wrong.
No branches or pull requests
yii-user/models/UserRecoveryForm.php
It didn't work properly. I tried to give it string "[email protected]" and it fails. I changed it to
However i'm not sure is it right, but now it passes validation
The text was updated successfully, but these errors were encountered: