From: Adam Hillier Date: Sun, 8 May 2016 14:18:26 +0000 (+0100) Subject: CRM-17657 - Update ReCAPCHA validation text to reflect new style of captcha. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=50c010c754732b07b48f043e7c1bf1f814660fc1;p=civicrm-core.git CRM-17657 - Update ReCAPCHA validation text to reflect new style of captcha. ---------------------------------------- * CRM-17657: ReCAPTCHA validation text is no longer accurate https://issues.civicrm.org/jira/browse/CRM-17657 --- diff --git a/CRM/Utils/ReCAPTCHA.php b/CRM/Utils/ReCAPTCHA.php index bf4177f0fd..41e5d8f68b 100644 --- a/CRM/Utils/ReCAPTCHA.php +++ b/CRM/Utils/ReCAPTCHA.php @@ -94,7 +94,7 @@ class CRM_Utils_ReCAPTCHA { if ($form->isSubmitted() && empty($form->_submitValues['g-recaptcha-response'])) { $form->setElementError( 'g-recaptcha-response', - ts('Input text must match the phrase in the image. Please review the image and re-enter matching text.') + ts('Please go back and complete the CAPTCHA at the bottom of this form.') ); } }