Make WordPress Core


Ignore:
Timestamp:
01/06/2022 06:19:09 PM (3 years ago)
Author:
desrosj
Message:

Grouped backports to the 4.3 branch.

  • Query: Improve sanitization within WP_Tax_Query.
  • Query: Improve sanitization within WP_Meta_Query.
  • Upgrade/Install: Avoid using unserialize() unnecessarily.
  • Formatting: Correctly encode ASCII characters in post slugs.

Merges [52454-52457] to the 4.3 branch.
Props vortfu, dd32, ehtis, zieladam, whyisjake, xknown, peterwilsoncc, desrosj, iandunn.

Location:
branches/4.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.3

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

    r49403 r52480  
    15721572            $sibling_compare = strtoupper( $sibling['compare'] );
    15731573            if ( in_array( $clause_compare, $compatible_compares ) && in_array( $sibling_compare, $compatible_compares ) ) {
    1574                 $alias = $sibling['alias'];
     1574                $alias = preg_replace( '/\W/', '_', $sibling['alias'] );
    15751575                break;
    15761576            }
Note: See TracChangeset for help on using the changeset viewer.