Make WordPress Core


Ignore:
Timestamp:
04/29/2020 04:18:07 PM (5 years ago)
Author:
whyisjake
Message:

Customize: Add additional filters to Customizer to prevent JSON corruption.
User: Invalidate user_activation_key on password update.
Query: Ensure that only a single post can be returned on date/time based queries.
Cache API: Ensure proper escaping around the stats method in the cache API.
Formatting: Expand sanitize_file_name to have better support for utf8 characters.

Brings the changes in [47633], [47634], [47635], [47637], and [47638] to the 4.8 branch.

Props: batmoo, ehti, nickdaugherty, peterwilsoncc, sergeybiryukov, sstoqnov, westi, westonruter, whyisjake, whyisjake, xknown.

Location:
branches/4.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8

  • branches/4.8/src/wp-includes/formatting.php

    r45995 r47649  
    17631763    $filename_raw = $filename;
    17641764    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", chr(0));
     1765
     1766    // Check for support for utf8 in the installed PCRE library once and store the result in a static.
     1767    static $utf8_pcre = null;
     1768    if ( ! isset( $utf8_pcre ) ) {
     1769        // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
     1770        $utf8_pcre = @preg_match( '/^./u', 'a' );
     1771    }
     1772
     1773    if ( ! seems_utf8( $filename ) ) {
     1774        $_ext     = pathinfo( $filename, PATHINFO_EXTENSION );
     1775        $_name    = pathinfo( $filename, PATHINFO_FILENAME );
     1776        $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext;
     1777    }
     1778
     1779    if ( $utf8_pcre ) {
     1780        $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
     1781    }
     1782
    17651783    /**
    17661784     * Filters the list of characters to remove from a filename.
     
    17721790     */
    17731791    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1774     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    17751792    $filename = str_replace( $special_chars, '', $filename );
    17761793    $filename = str_replace( array( '%20', '+' ), '-', $filename );
Note: See TracChangeset for help on using the changeset viewer.