Make WordPress Core


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

Grouped backports to the 4.2 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.2 branch.
Props vortfu, dd32, ehtis, zieladam, whyisjake, xknown, peterwilsoncc, desrosj, iandunn.

Location:
branches/4.2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.2

  • branches/4.2/src/wp-includes/taxonomy.php

    r37137 r52481  
    11561156            // The sibling must both have compatible operator to share its alias.
    11571157            if ( in_array( strtoupper( $sibling['operator'] ), $compatible_operators ) ) {
    1158                 $alias = $sibling['alias'];
     1158                $alias = preg_replace( '/\W/', '_', $sibling['alias'] );
    11591159                break;
    11601160            }
     
    11861186        }
    11871187
    1188         $query['terms'] = array_unique( (array) $query['terms'] );
     1188        if ( 'slug' === $query['field'] || 'name' === $query['field'] ) {
     1189            $query['terms'] = array_unique( (array) $query['terms'] );
     1190        } else {
     1191            $query['terms'] = wp_parse_id_list( $query['terms'] );
     1192        }
    11891193
    11901194        if ( is_taxonomy_hierarchical( $query['taxonomy'] ) && $query['include_children'] ) {
Note: See TracChangeset for help on using the changeset viewer.