Changeset 2970166
- Timestamp:
- 09/22/2023 10:32:04 AM (18 months ago)
- Location:
- wp-mailto-links
- Files:
-
- 50 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-mailto-links/trunk/core/includes/classes/class-wp-mailto-links-run.php
r2180590 r2970166 348 348 349 349 if ( isset( $atts['email'] ) ) { 350 $atts['href'] = 'mailto:' . $atts['email'];350 $atts['href'] = 'mailto:' . sanitize_email( $atts['email'] ); 351 351 unset( $atts['email'] ); 352 352 } -
wp-mailto-links/trunk/readme.txt
r2236360 r2970166 3 3 Tags: hide, email, email address, mailto, antispam, protect, spambot, encode, encrypt, obfuscate, email link, protection 4 4 Requires at least: 4.7 5 Tested up to: 5.3.26 Stable tag: 3.1. 25 Tested up to: 6.2 6 Stable tag: 3.1.3 7 7 Requires PHP: 5.3.2 8 8 License: GPLv2 or later … … 109 109 110 110 == Changelog == 111 112 = 3.1.3: September 22, 2023 = 113 * Security Patch for XSS vulnerability within the [eeb_mailto] shortcode when using the "email" tag (Thanks to Wordfence) 111 114 112 115 = 3.1.2 = -
wp-mailto-links/trunk/wp-mailto-links.php
r2236360 r2970166 2 2 /** 3 3 * Plugin Name: WP Mailto Links - Hide & Protect Emails 4 * Version: 3.1. 24 * Version: 3.1.3 5 5 * Plugin URI: https://wordpress.org/plugins/wp-mailto-links/ 6 6 * Description: Protect & encode email addresses and mailto links from spambots & spamming. Easy to use - encodes emails out-of-the-box. … … 23 23 24 24 // Plugin version. 25 define( 'WPMT_VERSION', '3.1. 2' );25 define( 'WPMT_VERSION', '3.1.3' ); 26 26 27 27 // Determines if the plugin is loaded
Note: See TracChangeset
for help on using the changeset viewer.