Plugin Directory

Changeset 3048644


Ignore:
Timestamp:
03/10/2024 03:34:24 PM (2 years ago)
Author:
vanderwijk
Message:

Update to version 3.2.9 from GitHub

Location:
custom-post-widget
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • custom-post-widget/tags/3.2.9/custom-post-widget.php

    r3046871 r3048644  
    44 Plugin URI: https://vanderwijk.com/wordpress/wordpress-custom-post-widget/?utm_source=wordpress&utm_medium=plugin&utm_campaign=custom_post_widget
    55 Description: Show the content of a custom post of the type 'content_block' in a widget or with a shortcode.
    6  Version: 3.2.8
     6 Version: 3.2.9
    77 Author: Johan van der Wijk
    88 Author URI: https://vanderwijk.nl
     
    1111 License: GPL2
    1212
    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
    1414
    1515 Copyright 2023 Johan van der Wijk
  • custom-post-widget/tags/3.2.9/readme.txt

    r3046871 r3048644  
    22Contributors: vanderwijk 
    33Donate link:  https://www.paypal.me/vanderwijk 
    4 Tags: widget, sidebar, content block, block, custom, post, shortcode, wysiwyg, wpml, featured image 
     4Tags: widget, content block, block, custom post, shortcode
    55Requires at least: 4.6 
    66Tested up to: 6.4 
    7 Stable tag: 3.2.8 
     7Stable tag: 3.2.9 
    88License: GPLv2 or later 
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html 
     
    135135== Changelog ==
    136136
     137= 3.2.9 =
     138Fix 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
    137140= 3.2.8 =
    138141Added input sanitization on the shortcode arguments to prevent potential security issues.
  • custom-post-widget/tags/3.2.9/shortcode.php

    r3046871 r3048644  
    7070                    $content .= apply_filters ( 'the_content', $post->post_content );
    7171                } else {
    72                     $content .= esc_html ( $post->post_content );
     72                    $content .= $post->post_content;
    7373                }
    7474                $content .= '</' . esc_attr ( $markup ) . '>';
  • custom-post-widget/trunk/custom-post-widget.php

    r3046871 r3048644  
    44 Plugin URI: https://vanderwijk.com/wordpress/wordpress-custom-post-widget/?utm_source=wordpress&utm_medium=plugin&utm_campaign=custom_post_widget
    55 Description: Show the content of a custom post of the type 'content_block' in a widget or with a shortcode.
    6  Version: 3.2.8
     6 Version: 3.2.9
    77 Author: Johan van der Wijk
    88 Author URI: https://vanderwijk.nl
     
    1111 License: GPL2
    1212
    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
    1414
    1515 Copyright 2023 Johan van der Wijk
  • custom-post-widget/trunk/readme.txt

    r3046871 r3048644  
    22Contributors: vanderwijk 
    33Donate link:  https://www.paypal.me/vanderwijk 
    4 Tags: widget, sidebar, content block, block, custom, post, shortcode, wysiwyg, wpml, featured image 
     4Tags: widget, content block, block, custom post, shortcode
    55Requires at least: 4.6 
    66Tested up to: 6.4 
    7 Stable tag: 3.2.8 
     7Stable tag: 3.2.9 
    88License: GPLv2 or later 
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html 
     
    135135== Changelog ==
    136136
     137= 3.2.9 =
     138Fix 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
    137140= 3.2.8 =
    138141Added input sanitization on the shortcode arguments to prevent potential security issues.
  • custom-post-widget/trunk/shortcode.php

    r3046871 r3048644  
    7070                    $content .= apply_filters ( 'the_content', $post->post_content );
    7171                } else {
    72                     $content .= esc_html ( $post->post_content );
     72                    $content .= $post->post_content;
    7373                }
    7474                $content .= '</' . esc_attr ( $markup ) . '>';
Note: See TracChangeset for help on using the changeset viewer.