Make WordPress Core


Ignore:
Timestamp:
04/29/2020 04:52:21 PM (4 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.1 branch.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1/src/wp-includes/formatting.php

    r37818 r47658  
    11671167    $filename_raw = $filename;
    11681168    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0));
     1169
     1170    // Check for support for utf8 in the installed PCRE library once and store the result in a static.
     1171    static $utf8_pcre = null;
     1172    if ( ! isset( $utf8_pcre ) ) {
     1173        // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
     1174        $utf8_pcre = @preg_match( '/^./u', 'a' );
     1175    }
     1176
     1177    if ( ! seems_utf8( $filename ) ) {
     1178        $_ext     = pathinfo( $filename, PATHINFO_EXTENSION );
     1179        $_name    = pathinfo( $filename, PATHINFO_FILENAME );
     1180        $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext;
     1181    }
     1182
     1183    if ( $utf8_pcre ) {
     1184        $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
     1185    }
     1186
    11691187    /**
    11701188     * Filter the list of characters to remove from a filename.
     
    11761194     */
    11771195    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1178     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    11791196    $filename = str_replace( $special_chars, '', $filename );
    11801197    $filename = str_replace( array( '%20', '+' ), '-', $filename );
Note: See TracChangeset for help on using the changeset viewer.