Make WordPress Core

Changeset 47652

Timestamp:
04/29/2020 04:25:54 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.7 branch.

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

Location:
branches/4.5
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/4.5

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

    r45999 r47652  
    13761376    $filename_raw = $filename;
    13771377    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", chr(0));
     1378
     1379
     1380
     1381
     1382
     1383
     1384
     1385
     1386
     1387
     1388
     1389
     1390
     1391
     1392
     1393
     1394
     1395
    13781396    /**
    13791397     * Filter the list of characters to remove from a filename.
     
    13851403     */
    13861404    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1387     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    13881405    $filename = str_replace( $special_chars, '', $filename );
    13891406    $filename = str_replace( array( '%20', '+' ), '-', $filename );
  • branches/4.5/src/wp-includes/query.php

    r46497 r47652  
    16231623        } elseif ( $qv['p'] ) {
    16241624            $this->is_single = true;
    1625         } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
    1626             // If year, month, day, hour, minute, and second are set, a single
    1627             // post is being queried.
    1628             $this->is_single = true;
    16291625        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    16301626            $this->is_page = true;
  • branches/4.5/src/wp-includes/user.php

    r41128 r47652  
    15941594
    15951595    if ( $update ) {
    1596         if ( $user_email !== $old_user_data->user_email ) {
     1596        if ( $user_email !== $old_user_data->user_email ) {
    15971597            $data['user_activation_key'] = '';
    15981598        }
  • branches/4.5/tests/phpunit/tests/formatting/SanitizeFileName.php

    r37809 r47652  
    6868        $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) );
    6969    }
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
    7086}
  • branches/4.5/tests/phpunit/tests/user.php

    r37059 r47652  
    922922    }
    923923
    924     function test_changing_email_invalidates_password_reset_key() {
     924    function test_changing_email_invalidates_password_reset_key() {
    925925        global $wpdb;
    926926
     
    947947            'user_nicename' => 'cat',
    948948            'user_email'    => 'foo@bar.dev',
     949
     950
     951
     952
     953
     954
     955
     956
     957
     958
     959
     960
     961
     962
     963
     964
     965
     966
     967
     968
    949969        );
    950970        wp_update_user( $userdata );
Note: See TracChangeset for help on using the changeset viewer.