Plugin Directory

Changeset 2707409


Ignore:
Timestamp:
04/09/2022 01:16:34 PM (4 years ago)
Author:
clearoutio
Message:

Minor Enhancements

Location:
clearout-email-validator/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • clearout-email-validator/trunk/plugin.php

    r2696832 r2707409  
    44* Plugin URL:   https://developer.wordpress.org/plugins/clearout-email-validator
    55* Description:  This plugin seamlessly integrated with all major forms to validate the user's given email address in real-time. Under the hood, this plugin use Clearout API to perform 20+ refined validation checks to determine the status of the email address, and thus helps capturing only the valid leads to maintain high quality mailing list.
    6 * Version:      1.7.11
     6* Version:      1.7.12
    77* Author:       Clearout.io
    88* Author URI:   https://clearout.io
     
    1313
    1414// plugin version.
    15 define('CLEAROUT_PLUGIN_VERSION', '1.7.11');
     15define('CLEAROUT_PLUGIN_VERSION', '1.7.12');
    1616define('CLEAROUT_RESULT_CACHED_TIMEOUT', 10800);
    1717define('CLEAROUT_BASE_API_URL', "https://api.clearout.io/v2/");
  • clearout-email-validator/trunk/readme.txt

    r2696832 r2707409  
    22Contributors: clearoutio
    33Donate link: https://Clearout.io
    4 Tags: email validation, real-time form validation, email verify, disposable email, free email, woocommerce, email verification, spamtrap, gibberish, business email, role account, auto suggesstion, email verifier, email tester, email checker
     4Tags: email validation, real-time form validation, email verify, disposable email, woocommerce, email verification, spamtrap, gibberish, business email, email tester, email checker, free email
    55Requires at least: 4.6
    66Tested up to: 5.7.2
     
    269269= 1.7.11 =
    270270* Support of form specific validation
     271= 1.7.12 =
     272* Minor Fixes
  • clearout-email-validator/trunk/src/clearout_validator.php

    r2696832 r2707409  
    341341        if ($validation_result['status'] == false) {
    342342            $is_valid_email = false;
    343             $errors->add('invalid_email', ((_check_custom_error_msg_exist($clearout_options)) ? esc_html_($clearout_options['custom_invalid_error']) : esc_html__('This email address is invalid or not allowed - please check.', 'clearout-email-validator')));
     343            $errors->add('invalid_email', ((_check_custom_error_msg_exist($clearout_options)) ? esc_html__($clearout_options['custom_invalid_error']) : esc_html__('This email address is invalid or not allowed - please check.', 'clearout-email-validator')));
    344344            return $errors;
    345345        }
     
    366366                $pmpro_continue_registration = false;
    367367                if (_check_custom_error_msg_exist($clearout_options)) {
    368                     pmpro_setMessage(esc_html_($clearout_options['custom_invalid_error']));
     368                    pmpro_setMessage(esc_html__($clearout_options['custom_invalid_error']));
    369369                } else {
    370370                    $errorMessage = _get_error_message($validation_result['reason']);
     
    399399                $result['is_valid'] = false;
    400400                if (_check_custom_error_msg_exist($clearout_options)) {
    401                     $result['message'] = esc_html_($clearout_options['custom_invalid_error']);
     401                    $result['message'] = esc_html__($clearout_options['custom_invalid_error']);
    402402                } else {
    403403                    $errorMessage = _get_error_message($validation_result['reason']);
Note: See TracChangeset for help on using the changeset viewer.