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.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.'
] ]
]); ]);
} }