Plugin Directory

Changeset 3037971


Ignore:
Timestamp:
02/19/2024 01:29:26 PM (13 months ago)
Author:
catchsquare
Message:

added 2.2.6 and added escaping attr

Location:
wp-social-widget
Files:
21 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-social-widget/trunk/inc/shortcodes.php

    r2844459 r3037971  
    115115
    116116    if( $atts['mail'] ){
    117         $socialBlock .= '<li class="mail"><a href="mailto:'.$atts['mail'].'" aria-label="Email" ><span class="social-icon sicon-mail"></span></a></li>';
     117        $socialBlock .= '<li class="mail"><a href="mailto:'.esc_attr($atts['mail']).'" aria-label="Email" ><span class="social-icon sicon-mail"></span></a></li>';
    118118    }
    119119
  • wp-social-widget/trunk/inc/social-widget.php

    r2860401 r3037971  
    586586
    587587        if ((isset($instance['mail']) && $instance['mail'] != ""))
    588             $socialBlock .= '<li><a href="mailto:' . $instance['mail'] . '" aria-label="Email" ><span class="social-icon sicon-mail"></span></a></li>';
     588            $socialBlock .= '<li><a href="mailto:' . esc_attr($instance['mail']) . '" aria-label="Email" ><span class="social-icon sicon-mail"></span></a></li>';
    589589
    590590        if ((isset($instance['pinterest']) && $instance['pinterest'] != ""))
  • wp-social-widget/trunk/readme.txt

    r2860401 r3037971  
    44Requires at least: 2.8
    55Tested up to: 6.1
    6 Stable tag: 2.2.5
     6Stable tag: 2.2.6
    77Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=contact%40catchsquare%2ecom&lc=US&item_name=WP%20Social%20Widget&no_note=0&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHostedGuest
    88License: GPLv2 or later
     
    9898
    9999== Changelog ==
     100= 2.2.6 =
     101change version
     102escaping attr in mail
     103
    100104= 2.2.5 =
    101105fixes click event
  • wp-social-widget/trunk/socials.php

    r2860401 r3037971  
    44Plugin URI: https://wordpress.org/plugins/wp-social-widget/
    55Description: A wordpress plugin to share links of social networking sites.
    6 Version: 2.2.5
     6Version: 2.2.6
    77Author: catchsquare
    88Author URI: http://catchsquare.com
     
    2323
    2424/*Define Constants for this plugin*/
    25 define( 'SOCIAL_NETWORK_VERSION', '2.2.5' );
     25define( 'SOCIAL_NETWORK_VERSION', '2.2.6' );
    2626define( 'SOCIAL_NETWORK_PATH', plugin_dir_path( __FILE__ ) );
    2727define( 'SOCIAL_NETWORK_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.