Make WordPress Core


Ignore:
Timestamp:
04/29/2020 04:53:40 PM (6 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.0 branch.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/4.0/src/wp-includes/query.php

    r46502 r47659  
    15921592        } elseif ( $qv['p'] ) {
    15931593            $this->is_single = true;
    1594         } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
    1595             // If year, month, day, hour, minute, and second are set, a single
    1596             // post is being queried.
    1597             $this->is_single = true;
    15981594        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    15991595            $this->is_page = true;
Note: See TracChangeset for help on using the changeset viewer.