Changeset 3037971
- Timestamp:
- 02/19/2024 01:29:26 PM (13 months ago)
- Location:
- wp-social-widget
- Files:
-
- 21 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
wp-social-widget/trunk/inc/shortcodes.php
r2844459 r3037971 115 115 116 116 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>'; 118 118 } 119 119 -
wp-social-widget/trunk/inc/social-widget.php
r2860401 r3037971 586 586 587 587 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>'; 589 589 590 590 if ((isset($instance['pinterest']) && $instance['pinterest'] != "")) -
wp-social-widget/trunk/readme.txt
r2860401 r3037971 4 4 Requires at least: 2.8 5 5 Tested up to: 6.1 6 Stable tag: 2.2. 56 Stable tag: 2.2.6 7 7 Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=contact%40catchsquare%2ecom&lc=US&item_name=WP%20Social%20Widget&no_note=0¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHostedGuest 8 8 License: GPLv2 or later … … 98 98 99 99 == Changelog == 100 = 2.2.6 = 101 change version 102 escaping attr in mail 103 100 104 = 2.2.5 = 101 105 fixes click event -
wp-social-widget/trunk/socials.php
r2860401 r3037971 4 4 Plugin URI: https://wordpress.org/plugins/wp-social-widget/ 5 5 Description: A wordpress plugin to share links of social networking sites. 6 Version: 2.2. 56 Version: 2.2.6 7 7 Author: catchsquare 8 8 Author URI: http://catchsquare.com … … 23 23 24 24 /*Define Constants for this plugin*/ 25 define( 'SOCIAL_NETWORK_VERSION', '2.2. 5' );25 define( 'SOCIAL_NETWORK_VERSION', '2.2.6' ); 26 26 define( 'SOCIAL_NETWORK_PATH', plugin_dir_path( __FILE__ ) ); 27 27 define( 'SOCIAL_NETWORK_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.