Make WordPress Core


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

Grouped Backports to the 6.3 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.3 branch.
Props xknown, peterwilsoncc, jorbin, bernhard-reiter, azaozz, dmsnell, gziolo.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/6.3/src/wp-includes/functions.php

    r56211 r58476  
    60426042    }
    60436043
     6044    // Normalize path for Windows servers
     6045    $file = wp_normalize_path( $file );
     6046
    60446047    // `../` on its own is not allowed:
    60456048    if ( '../' === $file ) {
Note: See TracChangeset for help on using the changeset viewer.