Plugin Directory

Changeset 3491958


Ignore:
Timestamp:
03/26/2026 04:07:49 PM (6 days ago)
Author:
dibwp
Message:

Release 1.0.5 - Fix search dialog stripped on WordPress proxy embeds

Location:
dropinblog
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • dropinblog/tags/1.0.5/classes/rendering.php

    r3482248 r3491958  
    9393
    9494        $allowed = wp_kses_allowed_html( 'post' );
     95        $allowed['dialog'] = ['id' => true, 'open' => true, 'class' => true, 'style' => true];
    9596        $allowed['a'] = ['href' => true, 'rel' => true, 'rev' => true, 'name' => true, 'target' => true, 'download' => ['*'], 'aria-controls' => true, 'aria-current' => true, 'aria-describedby' => true, 'aria-details' => true, 'aria-expanded' => true, 'aria-hidden' => true, 'aria-label' => true, 'aria-labelledby' => true, 'aria-live' => true, 'class' => true, 'data-*' => true, 'dir' => true, 'hidden' => true, 'id' => true, 'lang' => true, 'style' => true, 'title' => true, 'role' => true, 'xml:lang' => true, 'onclick' => true];
    9697        $allowed['li'] = ['align' => true, 'value' => true, 'aria-controls' => true, 'aria-current' => true, 'aria-describedby' => true, 'aria-details' => true, 'aria-expanded' => true, 'aria-hidden' => true, 'aria-label' => true, 'aria-labelledby' => true, 'aria-live' => true, 'class' => true, 'data-*' => true, 'dir' => true, 'hidden' => true, 'id' => true, 'lang' => true, 'style' => true, 'title' => true, 'role' => true, 'xml:lang' => true, 'onclick' => true];
  • dropinblog/tags/1.0.5/dropinblog.php

    r3482248 r3491958  
    44Plugin URI: https://dropinblog.com
    55Description: Embed and display your DropInBlog seamlessly within WordPress with full SEO support.
    6 Version: 1.0.4
     6Version: 1.0.5
    77License: GPL v2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • dropinblog/tags/1.0.5/readme.txt

    r3482248 r3491958  
    44Tested up to: 6.9
    55Requires at least PHP: 8.0
    6 Stable tag: 1.0.4
     6Stable tag: 1.0.5
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 1.0.5 =
     46* Fixed search dialog being stripped on proxy embeds by adding dialog to allowed HTML tags
     47
    4548= 1.0.4 =
    4649* Fixed trailing slash handling for blog sub-paths to match WordPress permalink settings
     
    5962
    6063== Upgrade Notice ==
     64
     65= 1.0.5 =
     66Fixes blog search not working on WordPress proxy embeds.
    6167
    6268= 1.0.4 =
  • dropinblog/trunk/classes/rendering.php

    r3482248 r3491958  
    9393
    9494        $allowed = wp_kses_allowed_html( 'post' );
     95        $allowed['dialog'] = ['id' => true, 'open' => true, 'class' => true, 'style' => true];
    9596        $allowed['a'] = ['href' => true, 'rel' => true, 'rev' => true, 'name' => true, 'target' => true, 'download' => ['*'], 'aria-controls' => true, 'aria-current' => true, 'aria-describedby' => true, 'aria-details' => true, 'aria-expanded' => true, 'aria-hidden' => true, 'aria-label' => true, 'aria-labelledby' => true, 'aria-live' => true, 'class' => true, 'data-*' => true, 'dir' => true, 'hidden' => true, 'id' => true, 'lang' => true, 'style' => true, 'title' => true, 'role' => true, 'xml:lang' => true, 'onclick' => true];
    9697        $allowed['li'] = ['align' => true, 'value' => true, 'aria-controls' => true, 'aria-current' => true, 'aria-describedby' => true, 'aria-details' => true, 'aria-expanded' => true, 'aria-hidden' => true, 'aria-label' => true, 'aria-labelledby' => true, 'aria-live' => true, 'class' => true, 'data-*' => true, 'dir' => true, 'hidden' => true, 'id' => true, 'lang' => true, 'style' => true, 'title' => true, 'role' => true, 'xml:lang' => true, 'onclick' => true];
  • dropinblog/trunk/dropinblog.php

    r3482248 r3491958  
    44Plugin URI: https://dropinblog.com
    55Description: Embed and display your DropInBlog seamlessly within WordPress with full SEO support.
    6 Version: 1.0.4
     6Version: 1.0.5
    77License: GPL v2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • dropinblog/trunk/readme.txt

    r3482248 r3491958  
    44Tested up to: 6.9
    55Requires at least PHP: 8.0
    6 Stable tag: 1.0.4
     6Stable tag: 1.0.5
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 1.0.5 =
     46* Fixed search dialog being stripped on proxy embeds by adding dialog to allowed HTML tags
     47
    4548= 1.0.4 =
    4649* Fixed trailing slash handling for blog sub-paths to match WordPress permalink settings
     
    5962
    6063== Upgrade Notice ==
     64
     65= 1.0.5 =
     66Fixes blog search not working on WordPress proxy embeds.
    6167
    6268= 1.0.4 =
Note: See TracChangeset for help on using the changeset viewer.