Changeset 3300142
- Timestamp:
- 05/25/2025 08:42:36 AM (10 months ago)
- Location:
- wp-social-widget
- Files:
-
- 21 added
- 3 edited
-
tags/2.3.1 (added)
-
tags/2.3.1/assets (added)
-
tags/2.3.1/assets/css (added)
-
tags/2.3.1/assets/css/social-admin_style.css (added)
-
tags/2.3.1/assets/css/social-icons.css (added)
-
tags/2.3.1/assets/css/social-icons.min.css (added)
-
tags/2.3.1/assets/css/social-style.css (added)
-
tags/2.3.1/assets/css/social-style.min.css (added)
-
tags/2.3.1/assets/fonts (added)
-
tags/2.3.1/assets/fonts/socialicon.eot (added)
-
tags/2.3.1/assets/fonts/socialicon.svg (added)
-
tags/2.3.1/assets/fonts/socialicon.ttf (added)
-
tags/2.3.1/assets/fonts/socialicon.woff (added)
-
tags/2.3.1/assets/js (added)
-
tags/2.3.1/assets/js/social-color_picker.js (added)
-
tags/2.3.1/inc (added)
-
tags/2.3.1/inc/include_file.php (added)
-
tags/2.3.1/inc/shortcodes.php (added)
-
tags/2.3.1/inc/social-widget.php (added)
-
tags/2.3.1/readme.txt (added)
-
tags/2.3.1/socials.php (added)
-
trunk/inc/shortcodes.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/socials.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-social-widget/trunk/inc/shortcodes.php
r3282569 r3300142 47 47 body .wpsw-social-links-shortcode li a .social-icon { 48 48 background: ".$atts['background_color'] ." !important; 49 color:". $atts['icon_color']." !important;49 color:".esc_attr($atts['icon_color'])." !important; 50 50 } 51 51 … … 53 53 body .wpsw-social-links-shortcode li a .social-icon:focus { 54 54 background: ".$atts['background_hover_color'] ." !important; 55 color:". $atts['icon_hover_color']." !important;55 color:".esc_attr($atts['icon_hover_color'])." !important; 56 56 57 57 }"; -
wp-social-widget/trunk/readme.txt
r3282576 r3300142 4 4 Requires at least: 2.8 5 5 Tested up to: 6.7 6 Stable tag: 2.3 6 Stable tag: 2.3.1 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.3.1 = 101 escaping attr 102 100 103 = 2.3 = 101 104 Added nonce in widget form -
wp-social-widget/trunk/socials.php
r3282576 r3300142 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.3 6 Version: 2.3.1 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.3 ' );25 define( 'SOCIAL_NETWORK_VERSION', '2.3.1' ); 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.