Make WordPress Core

Changeset 47660

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

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

Location:
branches/3.9
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/3.9/src/wp-includes/cache.php

    r27162 r47660  
    588588        echo '<ul>';
    589589        foreach ($this->cache as $group => $cache) {
    590             echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';
     590            echo , 2 ) . 'k )</li>';
    591591        }
    592592        echo '</ul>';
  • branches/3.9/src/wp-includes/formatting.php

    r37822 r47660  
    10361036    $filename_raw = $filename;
    10371037    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0));
     1038
     1039
     1040
     1041
     1042
     1043
     1044
     1045
     1046
     1047
     1048
     1049
     1050
     1051
     1052
     1053
     1054
     1055
    10381056    /**
    10391057     * Filter the list of characters to remove from a filename.
     
    10451063     */
    10461064    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1047     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    10481065    $filename = str_replace($special_chars, '', $filename);
    10491066    $filename = preg_replace('/[\s-]+/', '-', $filename);
  • branches/3.9/src/wp-includes/query.php

    r46503 r47660  
    15021502        } elseif ( $qv['p'] ) {
    15031503            $this->is_single = true;
    1504         } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
    1505             // If year, month, day, hour, minute, and second are set, a single
    1506             // post is being queried.
    1507             $this->is_single = true;
    15081504        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    15091505            $this->is_page = true;
  • branches/3.9/src/wp-includes/user.php

    r30432 r47660  
    17171717
    17181718    if ( $update ) {
    1719         if ( $user_email !== $old_user_data->user_email ) {
     1719        if ( $user_email !== $old_user_data->user_email ) {
    17201720            $data['user_activation_key'] = '';
    17211721        }
  • branches/3.9/tests/phpunit/tests/formatting/SanitizeFileName.php

    r37822 r47660  
    4343        $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) );
    4444    }
     45
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
     56
     57
     58
     59
     60
    4561}
  • branches/3.9/tests/phpunit/tests/user.php

    r47329 r47660  
    589589    }
    590590
    591     function test_changing_email_invalidates_password_reset_key() {
     591    function test_changing_email_invalidates_password_reset_key() {
    592592        global $wpdb;
    593593
     
    620620        $this->assertEmpty( $user->user_activation_key );
    621621    }
     622
     623
     624
     625
     626
     627
     628
     629
     630
     631
     632
     633
     634
     635
     636
     637
     638
     639
     640
     641
     642
    622643}
Note: See TracChangeset for help on using the changeset viewer.