Make WordPress Core


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

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 [47634], [47635], [47637], and [47638] to the 4.2 branch.

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

Location:
branches/4.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2

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

    r37816 r47657  
    12201220    $filename_raw = $filename;
    12211221    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0));
     1222
     1223    // Check for support for utf8 in the installed PCRE library once and store the result in a static.
     1224    static $utf8_pcre = null;
     1225    if ( ! isset( $utf8_pcre ) ) {
     1226        // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
     1227        $utf8_pcre = @preg_match( '/^./u', 'a' );
     1228    }
     1229
     1230    if ( ! seems_utf8( $filename ) ) {
     1231        $_ext     = pathinfo( $filename, PATHINFO_EXTENSION );
     1232        $_name    = pathinfo( $filename, PATHINFO_FILENAME );
     1233        $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext;
     1234    }
     1235
     1236    if ( $utf8_pcre ) {
     1237        $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
     1238    }
     1239
    12221240    /**
    12231241     * Filter the list of characters to remove from a filename.
     
    12291247     */
    12301248    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1231     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    12321249    $filename = str_replace( $special_chars, '', $filename );
    12331250    $filename = str_replace( array( '%20', '+' ), '-', $filename );
Note: See TracChangeset for help on using the changeset viewer.