Changeset 2975507
- Timestamp:
- 10/06/2023 10:32:16 AM (2 years ago)
- Location:
- smart-cookie-kit/trunk
- Files:
-
- 3 edited
-
plugin.php (modified) (1 diff)
-
plugin_frontend.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smart-cookie-kit/trunk/plugin.php
r2442583 r2975507 8 8 ** Author: Nicola Modugno 9 9 ** Author URI: https://nicolamodugno.it 10 ** Version: 2.3. 110 ** Version: 2.3.2 11 11 ** Requires at least: 4.6 12 12 ** License: GPL2 -
smart-cookie-kit/trunk/plugin_frontend.php
r2442331 r2975507 819 819 'class' => '', 820 820 'style' => '', 821 'text' => \ esc_html__( 'Cookie preferences', 'smart-cookie-kit' )821 'text' => \__( 'Cookie preferences', 'smart-cookie-kit' ) 822 822 ), $atts, 'cookie_banner_link' ); 823 823 … … 828 828 $properties = array(); 829 829 $properties[] = 'href="#"'; 830 $properties[] = \sprintf( 'class="%s"', $atts['class']);830 $properties[] = \sprintf( 'class="%s"', \esc_attr( $atts['class'] ) ); 831 831 if ( '' != $atts['style'] ) 832 $properties[] = \sprintf( 'style="%s"', $atts['style']);832 $properties[] = \sprintf( 'style="%s"', \esc_attr( $atts['style'] ) ); 833 833 834 834 return \sprintf( 835 835 '<a %s>%s</a>', 836 836 \implode( ' ', $properties ), 837 $atts['text']837 \esc_html( $atts['text'] ) 838 838 ); 839 839 } -
smart-cookie-kit/trunk/readme.txt
r2442556 r2975507 3 3 Donate link: https://paypal.me/modugnonicola 4 4 Tags: gdpr, eprivacy, cookie, cookie law, banner 5 Requires at least: 3.0.15 Requires at least: 4.6 6 6 Tested up to: 5.6 7 7 Stable tag: trunk … … 97 97 98 98 == Changelog == 99 100 = 2.3.2 = 101 * Fixed a XSS vulnerability (thanks to patchstack.com ) 99 102 100 103 = 2.3.1 =
Note: See TracChangeset
for help on using the changeset viewer.