Make WordPress Core


Ignore:
Timestamp:
04/29/2020 04:53:40 PM (6 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.0 branch.

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

File:
1 edited

Legend:

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

    r37819 r47659  
    11621162        $filename_raw = $filename;
    11631163        $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0));
     1164
     1165        // Check for support for utf8 in the installed PCRE library once and store the result in a static.
     1166        static $utf8_pcre = null;
     1167        if ( ! isset( $utf8_pcre ) ) {
     1168                // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
     1169                $utf8_pcre = @preg_match( '/^./u', 'a' );
     1170        }
     1171
     1172        if ( ! seems_utf8( $filename ) ) {
     1173                $_ext     = pathinfo( $filename, PATHINFO_EXTENSION );
     1174                $_name    = pathinfo( $filename, PATHINFO_FILENAME );
     1175                $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext;
     1176        }
     1177
     1178        if ( $utf8_pcre ) {
     1179                $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
     1180        }
     1181
    11641182        /**
    11651183         * Filter the list of characters to remove from a filename.
     
    11711189         */
    11721190        $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1173         $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    11741191        $filename = str_replace($special_chars, '', $filename);
    11751192        $filename = str_replace( array( '%20', '+' ), '-', $filename );
Note: See TracChangeset for help on using the changeset viewer.