Make WordPress Core


Ignore:
Timestamp:
06/24/2024 03:17:32 PM (20 months ago)
Author:
audrasjb
Message:

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

File:
1 edited

Legend:

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

    r54532 r58481  
    59615961    }
    59625962
     5963    // Normalize path for Windows servers
     5964    $file = wp_normalize_path( $file );
     5965
    59635966    // `../` on its own is not allowed:
    59645967    if ( '../' === $file ) {
Note: See TracChangeset for help on using the changeset viewer.