Make WordPress Core

Changeset 47651

Timestamp:
04/29/2020 04:24:40 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.6 branch.

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

Location:
branches/4.6
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/4.6

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

    r45998 r47651  
    17451745    $filename_raw = $filename;
    17461746    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", chr(0));
     1747
     1748
     1749
     1750
     1751
     1752
     1753
     1754
     1755
     1756
     1757
     1758
     1759
     1760
     1761
     1762
     1763
     1764
    17471765    /**
    17481766     * Filters the list of characters to remove from a filename.
     
    17541772     */
    17551773    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1756     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    17571774    $filename = str_replace( $special_chars, '', $filename );
    17581775    $filename = str_replace( array( '%20', '+' ), '-', $filename );
  • branches/4.6/src/wp-includes/query.php

    r46496 r47651  
    16331633        } elseif ( $qv['p'] ) {
    16341634            $this->is_single = true;
    1635         } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
    1636             // If year, month, day, hour, minute, and second are set, a single
    1637             // post is being queried.
    1638             $this->is_single = true;
    16391635        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    16401636            $this->is_page = true;
  • branches/4.6/src/wp-includes/user.php

    r38125 r47651  
    16131613
    16141614    if ( $update ) {
    1615         if ( $user_email !== $old_user_data->user_email ) {
     1615        if ( $user_email !== $old_user_data->user_email ) {
    16161616            $data['user_activation_key'] = '';
    16171617        }
  • branches/4.6/tests/phpunit/tests/formatting/SanitizeFileName.php

    r37756 r47651  
    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.6/tests/phpunit/tests/user.php

    r38005 r47651  
    925925    }
    926926
    927     function test_changing_email_invalidates_password_reset_key() {
     927    function test_changing_email_invalidates_password_reset_key() {
    928928        global $wpdb;
    929929
     
    950950            'user_nicename' => 'cat',
    951951            'user_email'    => 'foo@bar.dev',
     952
     953
     954
     955
     956
     957
     958
     959
     960
     961
     962
     963
     964
     965
     966
     967
     968
     969
     970
     971
    952972        );
    953973        wp_update_user( $userdata );
Note: See TracChangeset for help on using the changeset viewer.