Changeset 3464512
- Timestamp:
- 02/18/2026 04:31:41 PM (6 weeks ago)
- Location:
- clearout-email-validator
- Files:
-
- 19 added
- 3 edited
-
tags/3.3.1 (added)
-
tags/3.3.1/assets (added)
-
tags/3.3.1/assets/css (added)
-
tags/3.3.1/assets/css/amsify.suggestags.css (added)
-
tags/3.3.1/assets/css/clearout_plugin.css (added)
-
tags/3.3.1/assets/img (added)
-
tags/3.3.1/assets/img/clearout_wp_logo.png (added)
-
tags/3.3.1/assets/js (added)
-
tags/3.3.1/assets/js/clearout_plugin.js (added)
-
tags/3.3.1/assets/js/jquery.amsify.suggestags.js (added)
-
tags/3.3.1/license.txt (added)
-
tags/3.3.1/plugin.php (added)
-
tags/3.3.1/readme.txt (added)
-
tags/3.3.1/src (added)
-
tags/3.3.1/src/clearout-plugin-page-settings.php (added)
-
tags/3.3.1/src/clearout-plugin.php (added)
-
tags/3.3.1/src/clearout-validator.php (added)
-
tags/3.3.1/src/helper.php (added)
-
tags/3.3.1/uninstall.php (added)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/clearout-validator.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
clearout-email-validator/trunk/plugin.php
r3460861 r3464512 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: 3.3. 06 * Version: 3.3.1 7 7 * Author: Clearout.io 8 8 * Author URI: https://clearout.io … … 14 14 15 15 // plugin version. 16 define( 'CLEAROUT_PLUGIN_VERSION', '3.3. 0' );16 define( 'CLEAROUT_PLUGIN_VERSION', '3.3.1' ); 17 17 define( 'CLEAROUT_RESULT_CACHED_TIMEOUT', 3600 ); 18 18 define( 'CLEAROUT_BASE_API_URL', 'https://api.clearout.io/v2/' ); -
clearout-email-validator/trunk/readme.txt
r3460861 r3464512 4 4 Tags: email verifier, email checker, email verification, email validation, woocommerce 5 5 Requires at least: 4.6 6 Tested up to: 6. 8.17 Stable tag: 3.3. 06 Tested up to: 6.9.1 7 Stable tag: 3.3.1 8 8 License: GPLv2 or later 9 9 Block invalid emails like temporary, disposable, etc. with our real-time email verification. Verify email address during form-fill and stop form spam. … … 373 373 = 3.3.0 = 374 374 * Introduced blocking unknown email support 375 = 3.3.1 = 376 * Minor Fix -
clearout-email-validator/trunk/src/clearout-validator.php
r3460861 r3464512 1099 1099 // Empty email check, in case user doesnt prevent empty submission in form. 1100 1100 if ( empty( $email ) ) { 1101 return esc_html__( 'Email field is empty' );1101 return $submit_errors; 1102 1102 } 1103 1103 // Get option settings to know which validator is been called.
Note: See TracChangeset
for help on using the changeset viewer.