Compare commits

..

No commits in common. "42da9eb77807084f0a3f263750ae1633852db52b" and "75f0ae7668c257fe157f885ab54f588b10c9cb72" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

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

View File

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