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
When registering a new user with an email that passes the HTML5 email field check but doesn't pass the grav email filter check a 500 error is shown instead of passing back to the user to check their input.
Specific case if the input is "test@test"
"test@test." correctly recognised as invalid
user\plugins\login\classes\Login.php
line 400
case 'email':
$value = \is_string($value) ? trim($value) : '';
if ($value === '' || !filter_var($value, FILTER_VALIDATE_EMAIL)) {
thrownew \RuntimeException('Not a valid email address');
}
break;
Clean Install - only option changed is user registration to enabled
Grav v1.7.44
Admin v1.10.44
Form v7.3.0
Login v3.7.7
The text was updated successfully, but these errors were encountered:
When registering a new user with an email that passes the HTML5 email field check but doesn't pass the grav email filter check a 500 error is shown instead of passing back to the user to check their input.
Specific case if the input is "test@test"
"test@test." correctly recognised as invalid
user\plugins\login\classes\Login.php
line 400
Clean Install - only option changed is user registration to enabled
Grav v1.7.44
Admin v1.10.44
Form v7.3.0
Login v3.7.7
The text was updated successfully, but these errors were encountered: