X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FForm%2FRegistration.php;h=f2f5e25831dcf451dd347b26d6b0c2e4a2059a2d;hb=b645b9a7f37bcef7ea2b60933267a2085e1bbd3c;hp=d9a8624d0eab00822c5e48c31689c3718f274bad;hpb=7c853a54b42fa7d03bcfac07154d7fa44e4a15de;p=civicrm-core.git diff --git a/CRM/Event/Form/Registration.php b/CRM/Event/Form/Registration.php index d9a8624d0e..f2f5e25831 100644 --- a/CRM/Event/Form/Registration.php +++ b/CRM/Event/Form/Registration.php @@ -533,7 +533,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { $fields = array_diff_key($fields, $fieldsToIgnore); CRM_Core_Session::setStatus(ts('Some of the profile fields cannot be configured for this page.')); } - $addCaptcha = FALSE; if (!empty($this->_fields)) { $fields = @array_diff_assoc($fields, $this->_fields); @@ -553,20 +552,11 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { if ($button == 'skip') { $field['is_required'] = FALSE; } - // CRM-11316 Is ReCAPTCHA enabled for this profile AND is this an anonymous visitor - elseif ($field['add_captcha'] && !$contactID) { - // only add captcha for first page - $addCaptcha = TRUE; - } CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE, $contactID, TRUE); $this->_fields[$key] = $field; } } - - if ($addCaptcha) { - CRM_Utils_ReCAPTCHA::enableCaptchaOnForm($this); - } } /** @@ -1539,8 +1529,8 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { //lets get additional participant id to cancel. if ($this->_allowConfirmation && is_array($cancelledIds)) { - $additonalId = $value['participant_id'] ?? NULL; - if ($additonalId && $key = array_search($additonalId, $cancelledIds)) { + $additionalId = $value['participant_id'] ?? NULL; + if ($additionalId && $key = array_search($additionalId, $cancelledIds)) { unset($cancelledIds[$key]); } }