Changeset 2707409
- Timestamp:
- 04/09/2022 01:16:34 PM (4 years ago)
- Location:
- clearout-email-validator/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/clearout_validator.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clearout-email-validator/trunk/plugin.php
r2696832 r2707409 4 4 * Plugin URL: https://developer.wordpress.org/plugins/clearout-email-validator 5 5 * 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.1 16 * Version: 1.7.12 7 7 * Author: Clearout.io 8 8 * Author URI: https://clearout.io … … 13 13 14 14 // plugin version. 15 define('CLEAROUT_PLUGIN_VERSION', '1.7.1 1');15 define('CLEAROUT_PLUGIN_VERSION', '1.7.12'); 16 16 define('CLEAROUT_RESULT_CACHED_TIMEOUT', 10800); 17 17 define('CLEAROUT_BASE_API_URL', "https://api.clearout.io/v2/"); -
clearout-email-validator/trunk/readme.txt
r2696832 r2707409 2 2 Contributors: clearoutio 3 3 Donate 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 checker4 Tags: email validation, real-time form validation, email verify, disposable email, woocommerce, email verification, spamtrap, gibberish, business email, email tester, email checker, free email 5 5 Requires at least: 4.6 6 6 Tested up to: 5.7.2 … … 269 269 = 1.7.11 = 270 270 * Support of form specific validation 271 = 1.7.12 = 272 * Minor Fixes -
clearout-email-validator/trunk/src/clearout_validator.php
r2696832 r2707409 341 341 if ($validation_result['status'] == false) { 342 342 $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'))); 344 344 return $errors; 345 345 } … … 366 366 $pmpro_continue_registration = false; 367 367 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'])); 369 369 } else { 370 370 $errorMessage = _get_error_message($validation_result['reason']); … … 399 399 $result['is_valid'] = false; 400 400 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']); 402 402 } else { 403 403 $errorMessage = _get_error_message($validation_result['reason']);
Note: See TracChangeset
for help on using the changeset viewer.