Plugin Directory

Changeset 3300142


Ignore:
Timestamp:
05/25/2025 08:42:36 AM (10 months ago)
Author:
catchsquare
Message:

esc attr

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

Legend:

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

    r3282569 r3300142  
    4747            body .wpsw-social-links-shortcode li a .social-icon {
    4848                background: ".$atts['background_color'] ." !important;
    49                 color:".$atts['icon_color']." !important;
     49                color:".esc_attr($atts['icon_color'])." !important;
    5050            }
    5151
     
    5353            body .wpsw-social-links-shortcode li a .social-icon:focus {
    5454                background: ".$atts['background_hover_color'] ." !important;
    55                 color:".$atts['icon_hover_color']." !important;
     55                color:".esc_attr($atts['icon_hover_color'])." !important;
    5656
    5757            }";
  • wp-social-widget/trunk/readme.txt

    r3282576 r3300142  
    44Requires at least: 2.8
    55Tested up to: 6.7
    6 Stable tag: 2.3
     6Stable tag: 2.3.1
    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.3.1 =
     101escaping attr
     102
    100103= 2.3 =
    101104Added nonce in widget form
  • wp-social-widget/trunk/socials.php

    r3282576 r3300142  
    44Plugin URI: https://wordpress.org/plugins/wp-social-widget/
    55Description: A wordpress plugin to share links of social networking sites.
    6 Version: 2.3
     6Version: 2.3.1
    77Author: catchsquare
    88Author URI: http://catchsquare.com
     
    2323
    2424/*Define Constants for this plugin*/
    25 define( 'SOCIAL_NETWORK_VERSION', '2.3' );
     25define( 'SOCIAL_NETWORK_VERSION', '2.3.1' );
    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.