Make WordPress Core


Ignore:
Timestamp:
06/24/2024 03:13:02 PM (19 months ago)
Author:
audrasjb
Message:

Grouped Backports to the 6.2 branch.

  • Editor: Fix Path Traversal issue on Windows in Template-Part Block.
  • Editor: Sanitize Template Part HTML tag on save.
  • HTML API: Run URL attributes through esc_url().

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

File:
1 edited

Legend:

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

    r55829 r58479  
    156156    $content = $wp_embed->autoembed( $content );
    157157
    158     if ( empty( $attributes['tagName'] ) ) {
     158    if ( empty( $attributes['tagName'] ) || tag_escape( $attributes['tagName'] ) !== $attributes['tagName'] ) {
    159159        $area_tag = 'div';
    160160        if ( $area_definition && isset( $area_definition['area_tag'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.