Make WordPress Core

Changeset 47656

Timestamp:
04/29/2020 04:48:42 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.3 branch.

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

Location:
branches/4.3
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/4.3

  • branches/4.3/src/wp-includes/cache.php

    r32539 r47656  
    654654        echo '<ul>';
    655655        foreach ($this->cache as $group => $cache) {
    656             echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / 1024, 2 ) . 'k )</li>';
     656            echo , 2 ) . 'k )</li>';
    657657        }
    658658        echo '</ul>';
  • branches/4.3/src/wp-includes/formatting.php

    r37814 r47656  
    13101310    $filename_raw = $filename;
    13111311    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", chr(0));
     1312
     1313
     1314
     1315
     1316
     1317
     1318
     1319
     1320
     1321
     1322
     1323
     1324
     1325
     1326
     1327
     1328
     1329
    13121330    /**
    13131331     * Filter the list of characters to remove from a filename.
     
    13191337     */
    13201338    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1321     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    13221339    $filename = str_replace( $special_chars, '', $filename );
    13231340    $filename = str_replace( array( '%20', '+' ), '-', $filename );
  • branches/4.3/src/wp-includes/query.php

    r46499 r47656  
    16001600        } elseif ( $qv['p'] ) {
    16011601            $this->is_single = true;
    1602         } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
    1603             // If year, month, day, hour, minute, and second are set, a single
    1604             // post is being queried.
    1605             $this->is_single = true;
    16061602        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    16071603            $this->is_page = true;
  • branches/4.3/src/wp-includes/user.php

    r34118 r47656  
    20522052
    20532053    if ( $update ) {
    2054         if ( $user_email !== $old_user_data->user_email ) {
     2054        if ( $user_email !== $old_user_data->user_email ) {
    20552055            $data['user_activation_key'] = '';
    20562056        }
  • branches/4.3/tests/phpunit/tests/formatting/SanitizeFileName.php

    r37814 r47656  
    6161        $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) );
    6262    }
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
    6379}
  • branches/4.3/tests/phpunit/tests/user.php

    r34118 r47656  
    565565    }
    566566
    567     function test_changing_email_invalidates_password_reset_key() {
     567    function test_changing_email_invalidates_password_reset_key() {
    568568        global $wpdb;
    569569
     
    590590            'user_nicename' => 'cat',
    591591            'user_email'    => 'foo@bar.dev',
     592
     593
     594
     595
     596
     597
     598
     599
     600
     601
     602
     603
     604
     605
     606
     607
     608
     609
     610
     611
    592612        );
    593613        wp_update_user( $userdata );
Note: See TracChangeset for help on using the changeset viewer.