PHPFusion\UserFieldsInput::_setValidationError PHP Метод

_setValidationError() приватный Метод

Get New Password Hash and Directly Set New Cookie if Authenticated
private _setValidationError ( )
    private function _setValidationError()
    {
        global $locale, $settings, $defender;
        $_CAPTCHA_IS_VALID = FALSE;
        include INCLUDES . "captchas/" . $settings['captcha'] . "/captcha_check.php";
        if ($_CAPTCHA_IS_VALID == FALSE) {
            $defender->stop();
            $defender->setInputError('user_captcha');
            addNotice('danger', $locale['u194']);
        }
    }