Make WordPress Core


Ignore:
Timestamp:
06/24/2024 03:23:25 PM (7 months ago)
Author:
audrasjb
Message:

Grouped Backports to the 5.9 branch.

  • Editor: Fix Path Traversal issue on Windows in Template-Part Block.
  • Editor: Sanitize Template Part HTML tag on save.

Merges [58470], [58471], [58472] and [58473] to the 5.9 branch.
Props xknown, peterwilsoncc, jorbin, bernhard-reiter, azaozz.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/5.9/src/wp-includes/blocks/template-part.php

    r55832 r58483  
    142142    $content = $wp_embed->autoembed( $content );
    143143
    144     if ( empty( $attributes['tagName'] ) ) {
     144    if ( empty( $attributes['tagName'] ) || tag_escape( $attributes['tagName'] ) !== $attributes['tagName'] ) {
    145145        $defined_areas = get_allowed_block_template_part_areas();
    146146        $area_tag      = 'div';
Note: See TracChangeset for help on using the changeset viewer.