Make WordPress Core


Ignore:
Timestamp:
04/29/2020 04:57:01 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 3.8 branch.

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

Location:
branches/3.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8

  • branches/3.8/tests/phpunit/tests/formatting/SanitizeFileName.php

    r37824 r47661  
    4343                $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) );
    4444        }
     45
     46        /**
     47         * @dataProvider data_wp_filenames
     48         */
     49        function test_replaces_invalid_utf8_characters( $input, $expected ) {
     50                $this->assertEquals( $expected, sanitize_file_name( $input ) );
     51        }
     52
     53        function data_wp_filenames() {
     54                return array(
     55                        array( urldecode( '%B1myfile.png' ), 'myfile.png' ),
     56                        array( urldecode( '%B1myfile' ), 'myfile' ),
     57                        array( 'demo bar.png', 'demo-bar.png' ),
     58                        array( 'demo' . json_decode( '"\u00a0"' ) . 'bar.png', 'demo-bar.png' ),
     59                );
     60        }
    4561}
Note: See TracChangeset for help on using the changeset viewer.