Changeset 3048644
- Timestamp:
- 03/10/2024 03:34:24 PM (2 years ago)
- Location:
- custom-post-widget
- Files:
-
- 6 edited
- 1 copied
-
tags/3.2.9 (copied) (copied from custom-post-widget/trunk)
-
tags/3.2.9/custom-post-widget.php (modified) (2 diffs)
-
tags/3.2.9/readme.txt (modified) (2 diffs)
-
tags/3.2.9/shortcode.php (modified) (1 diff)
-
trunk/custom-post-widget.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/shortcode.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
custom-post-widget/tags/3.2.9/custom-post-widget.php
r3046871 r3048644 4 4 Plugin URI: https://vanderwijk.com/wordpress/wordpress-custom-post-widget/?utm_source=wordpress&utm_medium=plugin&utm_campaign=custom_post_widget 5 5 Description: Show the content of a custom post of the type 'content_block' in a widget or with a shortcode. 6 Version: 3.2. 86 Version: 3.2.9 7 7 Author: Johan van der Wijk 8 8 Author URI: https://vanderwijk.nl … … 11 11 License: GPL2 12 12 13 Release notes: Added input sanitization on the shortcode arguments to prevent potential security issues.13 Release notes: Fix for stripped html tags when using the suppress_content_filters option on the shortcode 14 14 15 15 Copyright 2023 Johan van der Wijk -
custom-post-widget/tags/3.2.9/readme.txt
r3046871 r3048644 2 2 Contributors: vanderwijk 3 3 Donate link: https://www.paypal.me/vanderwijk 4 Tags: widget, sidebar, content block, block, custom, post, shortcode, wysiwyg, wpml, featured image4 Tags: widget, content block, block, custom post, shortcode 5 5 Requires at least: 4.6 6 6 Tested up to: 6.4 7 Stable tag: 3.2. 87 Stable tag: 3.2.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 135 135 == Changelog == 136 136 137 = 3.2.9 = 138 Fix for stripped html tags when using the suppress_content_filters option on the shortcode. As reported in the support forums: https://wordpress.org/support/topic/html-content-now-showing-as-text/ 139 137 140 = 3.2.8 = 138 141 Added input sanitization on the shortcode arguments to prevent potential security issues. -
custom-post-widget/tags/3.2.9/shortcode.php
r3046871 r3048644 70 70 $content .= apply_filters ( 'the_content', $post->post_content ); 71 71 } else { 72 $content .= esc_html ( $post->post_content );72 $content .= $post->post_content; 73 73 } 74 74 $content .= '</' . esc_attr ( $markup ) . '>'; -
custom-post-widget/trunk/custom-post-widget.php
r3046871 r3048644 4 4 Plugin URI: https://vanderwijk.com/wordpress/wordpress-custom-post-widget/?utm_source=wordpress&utm_medium=plugin&utm_campaign=custom_post_widget 5 5 Description: Show the content of a custom post of the type 'content_block' in a widget or with a shortcode. 6 Version: 3.2. 86 Version: 3.2.9 7 7 Author: Johan van der Wijk 8 8 Author URI: https://vanderwijk.nl … … 11 11 License: GPL2 12 12 13 Release notes: Added input sanitization on the shortcode arguments to prevent potential security issues.13 Release notes: Fix for stripped html tags when using the suppress_content_filters option on the shortcode 14 14 15 15 Copyright 2023 Johan van der Wijk -
custom-post-widget/trunk/readme.txt
r3046871 r3048644 2 2 Contributors: vanderwijk 3 3 Donate link: https://www.paypal.me/vanderwijk 4 Tags: widget, sidebar, content block, block, custom, post, shortcode, wysiwyg, wpml, featured image4 Tags: widget, content block, block, custom post, shortcode 5 5 Requires at least: 4.6 6 6 Tested up to: 6.4 7 Stable tag: 3.2. 87 Stable tag: 3.2.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 135 135 == Changelog == 136 136 137 = 3.2.9 = 138 Fix for stripped html tags when using the suppress_content_filters option on the shortcode. As reported in the support forums: https://wordpress.org/support/topic/html-content-now-showing-as-text/ 139 137 140 = 3.2.8 = 138 141 Added input sanitization on the shortcode arguments to prevent potential security issues. -
custom-post-widget/trunk/shortcode.php
r3046871 r3048644 70 70 $content .= apply_filters ( 'the_content', $post->post_content ); 71 71 } else { 72 $content .= esc_html ( $post->post_content );72 $content .= $post->post_content; 73 73 } 74 74 $content .= '</' . esc_attr ( $markup ) . '>';
Note: See TracChangeset
for help on using the changeset viewer.