Skip to content
Snippets Groups Projects
Commit bfcfb07c authored by ale's avatar ale Committed by agata
Browse files

fix recaptcha validate_user_signup hook

parent 7b4d558d
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ class ReCAPTCHAPlugin extends WPPlugin ...@@ -252,7 +252,7 @@ class ReCAPTCHAPlugin extends WPPlugin
$_POST['g-recaptcha-response'] == '') { $_POST['g-recaptcha-response'] == '') {
$result['errors']->add('blank_captcha', $result['errors']->add('blank_captcha',
$this->options['no_response_error']); $this->options['no_response_error']);
return $result['errors']; return $result;
} }
if ($this->_reCaptchaLib == null) { if ($this->_reCaptchaLib == null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment