Compare commits

..

13 Commits

2 changed files with 1 additions and 4 deletions

View File

@ -64,9 +64,6 @@ var RVR = {
formError.style.display = 'block';
formError.innerHTML = this.response.error.errorText;
if (typeof grecaptcha !== 'undefined') {
grecaptcha.reset();
}
return;
}

View File

@ -196,7 +196,7 @@ class LoginController
if ($user === null) {
return new JsonContent([
'error' => [
'errorText' => 'No user found with the given email address.'
'errorText' => 'No user found with the given email address / username.'
]
]);
}