From 50c010c754732b07b48f043e7c1bf1f814660fc1 Mon Sep 17 00:00:00 2001 From: Adam Hillier Date: Sun, 8 May 2016 15:18:26 +0100 Subject: [PATCH] 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 --- CRM/Utils/ReCAPTCHA.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.') ); } } -- 2.25.1