M
M
Maxim Grechushnikov2015-03-25 14:06:15
1C-Bitrix
Maxim Grechushnikov, 2015-03-25 14:06:15

Bitrix: How to return error text in events?

Using OnBeforePostAdd to check captcha

function OnBeforePostAdd_checkCaptchaCode(&$arResult, &$arUserResult){   
      global $APPLICATION;
     
      if( isset($_POST['captcha_word']) && isset($_POST['captcha_sid']) && !$APPLICATION->CaptchaCheckCode($_POST['captcha_word'], $_POST['captcha_sid']))   {
         $arResult['ERROR_MESSAGE']= 'Введите правильно "Код" с картинки';
  return false;
      }
      
      return true;
   }
</code

Не могу понять, как выводить ошибку о том, что код с картинки введен не правильно. Показывается
Error saving data to database.
и все...

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nikita Samokhvalov, 2015-03-25
@maxyc_webber

Try throwing an exception .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question