Changeset 3258467
- Timestamp:
- 03/19/2025 11:47:49 AM (16 months ago)
- Location:
- clearout-email-validator
- Files:
-
- 19 added
- 3 edited
-
tags/3.2.1 (added)
-
tags/3.2.1/assets (added)
-
tags/3.2.1/assets/css (added)
-
tags/3.2.1/assets/css/amsify.suggestags.css (added)
-
tags/3.2.1/assets/css/clearout_plugin.css (added)
-
tags/3.2.1/assets/img (added)
-
tags/3.2.1/assets/img/clearout_wp_logo.png (added)
-
tags/3.2.1/assets/js (added)
-
tags/3.2.1/assets/js/clearout_plugin.js (added)
-
tags/3.2.1/assets/js/jquery.amsify.suggestags.js (added)
-
tags/3.2.1/license.txt (added)
-
tags/3.2.1/plugin.php (added)
-
tags/3.2.1/readme.txt (added)
-
tags/3.2.1/src (added)
-
tags/3.2.1/src/clearout-plugin-page-settings.php (added)
-
tags/3.2.1/src/clearout-plugin.php (added)
-
tags/3.2.1/src/clearout-validator.php (added)
-
tags/3.2.1/src/helper.php (added)
-
tags/3.2.1/uninstall.php (added)
-
trunk/assets/js/jquery.amsify.suggestags.js (modified) (1 diff)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
clearout-email-validator/trunk/assets/js/jquery.amsify.suggestags.js
r2843997 r3258467 543 543 } 544 544 545 try { 546 let urlObj = new URL(value) 547 // Only save the origin + pathname, and remoev any query params 548 let sanitisedUrl = urlObj.origin + urlObj.pathname 549 550 // if it ends with slash, remove it and save it, to maintain uniqueness 551 if (sanitisedUrl.endsWith('/')) sanitisedUrl = sanitisedUrl.slice(0, -1) 552 553 // If the sanitised URL is diff, remoe that from the tags and add this instead 554 if (sanitisedUrl !== value) { 555 value = sanitisedUrl; 556 } 557 } catch (e) { 558 return; 559 } 560 545 561 var html = '<span class="'+this.classes.tagItem.substring(1)+'" data-val="'+value+'">'+'<a href="'+ this.getTag(value) + '" target="_blank">'+this.getTag(value)+'</a>' + ' '+this.setIcon()+'</span>'; 546 562 $item = $(html).insertBefore($(this.selectors.sTagsInput)); -
clearout-email-validator/trunk/plugin.php
r3239399 r3258467 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.2. 06 * Version: 3.2.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.2. 0' );16 define( 'CLEAROUT_PLUGIN_VERSION', '3.2.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
r3239399 r3258467 5 5 Requires at least: 4.6 6 6 Tested up to: 6.5.5 7 Stable tag: 3.2. 07 Stable tag: 3.2.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. … … 361 361 = 3.2.0 = 362 362 * Introduced WooCommerce Signup Form support 363 = 3.2.1 = 364 * Minor Security Fixes
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](https://plugins.trac.wordpress.org/chrome/site/your_project_logo.png)