Make WordPress Core


Ignore:
Timestamp:
04/29/2020 04:15:39 PM (6 years ago)
Author:
whyisjake
Message:

Customize: Add additional filters to Customizer to prevent JSON corruption.
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 [47633], [47634], [47635], [47637], and [47638] to the 4.9 branch.

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

Location:
branches/4.9
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.9

  • branches/4.9/src/wp-includes/user.php

    r43708 r47648  
    16931693
    16941694        if ( $update ) {
    1695                 if ( $user_email !== $old_user_data->user_email ) {
     1695                if ( $user_email !== $old_user_data->user_email || $user_pass !== $old_user_data->user_pass ) {
    16961696                        $data['user_activation_key'] = '';
    16971697                }
Note: See TracChangeset for help on using the changeset viewer.