Guest User

Untitled

a guest
Jun 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. if ($request->getPost('is_captcha') == 'true'){
  2. CModule::IncludeModule('iqonline.recaptcha');
  3. $res_captcha = iqonline\recaptcha\recaptcha::check_recaptcha($_REQUEST['g-recaptcha-response']);
  4. if (!$res_captcha['success']) {
  5. $arResult["ERROR_MESSAGE"][] = Loc::getMessage("WRONG_CAPTCHA")."<br />";
  6. }
  7. }
  8.  
  9. #OLD CAPTCHA
  10. // if(!empty($captchaSid) && !$APPLICATION->CaptchaCheckCode($captchaWord, $captchaSid)){
  11. // $arResult["ERROR_MESSAGE"][] = Loc::getMessage("WRONG_CAPTCHA")."<br />";
  12. // }
Add Comment
Please, Sign In to add comment