Make WordPress Core


Ignore:
Timestamp:
10/14/2019 07:29:52 PM (6 years ago)
Author:
whyisjake
Message:

Backporting several bug fixes.

  • Query: Remove the static query property.
  • HTTP API: Protect against hex interpretation.
  • Filesystem API: Prevent directory travelersals when creating new folders.
  • Administration: Ensure that admin referer nonce is valid.
  • REST API: Send a Vary: Origin header on GET requests.
  • Customizer: Properly sanitize background images.

Backports [46474], [46475], [46476], [46477], [46478], [46483], [46485] to the 3.8 branch.

Location:
branches/3.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.8

  • branches/3.8/src/wp-includes/query.php

    r39965 r46504  
    13971397            , 'attachment_id'
    13981398            , 'name'
    1399             , 'static'
    14001399            , 'pagename'
    14011400            , 'page_id'
     
    15051504            // post is being queried.
    15061505            $this->is_single = true;
    1507         } elseif ( '' != $qv['static'] || '' != $qv['pagename'] || !empty($qv['page_id']) ) {
     1506        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    15081507            $this->is_page = true;
    15091508            $this->is_single = false;
Note: See TracChangeset for help on using the changeset viewer.