Plugin Directory

Changeset 2970166


Ignore:
Timestamp:
09/22/2023 10:32:04 AM (18 months ago)
Author:
ironikus
Message:

introduce v3.1.3

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  
    348348
    349349        if ( isset( $atts['email'] ) ) {
    350             $atts['href'] = 'mailto:' . $atts['email'];
     350            $atts['href'] = 'mailto:' . sanitize_email( $atts['email'] );
    351351            unset( $atts['email'] );
    352352        }
  • wp-mailto-links/trunk/readme.txt

    r2236360 r2970166  
    33Tags: hide, email, email address, mailto, antispam, protect, spambot, encode, encrypt, obfuscate, email link, protection
    44Requires at least: 4.7
    5 Tested up to: 5.3.2
    6 Stable tag: 3.1.2
     5Tested up to: 6.2
     6Stable tag: 3.1.3
    77Requires PHP: 5.3.2
    88License: GPLv2 or later
     
    109109
    110110== 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)
    111114
    112115= 3.1.2 =
  • wp-mailto-links/trunk/wp-mailto-links.php

    r2236360 r2970166  
    22 /**
    33 * Plugin Name:    WP Mailto Links - Hide & Protect Emails
    4  * Version:        3.1.2
     4 * Version:        3.1.3
    55 * Plugin URI:     https://wordpress.org/plugins/wp-mailto-links/
    66 * Description:    Protect & encode email addresses and mailto links from spambots & spamming. Easy to use - encodes emails out-of-the-box.
     
    2323
    2424// Plugin version.
    25 define( 'WPMT_VERSION',        '3.1.2' );
     25define( 'WPMT_VERSION',        '3.1.3' );
    2626
    2727// Determines if the plugin is loaded
Note: See TracChangeset for help on using the changeset viewer.