Make WordPress Core

Changeset 60048


Ignore:
Timestamp:
03/18/2025 11:32:56 PM (2 months ago)
Author:
jorbin
Message:

Coding Standards: Fix alignment in WP_Query::parse_tax_query.

Follow-up to [59766].

See #59516, #62279.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-query.php

    r59993 r60048  
    12921292            $q['category__not_in'] = array_map( 'absint', array_unique( (array) $q['category__not_in'] ) );
    12931293            sort( $q['category__not_in'] );
    1294             $tax_query[]           = array(
     1294            $tax_query[] = array(
    12951295                'taxonomy'         => 'category',
    12961296                'terms'            => $q['category__not_in'],
     
    13611361            $q['tag__not_in'] = array_map( 'absint', array_unique( (array) $q['tag__not_in'] ) );
    13621362            sort( $q['tag__not_in'] );
    1363             $tax_query[]      = array(
     1363            $tax_query[] = array(
    13641364                'taxonomy' => 'post_tag',
    13651365                'terms'    => $q['tag__not_in'],
Note: See TracChangeset for help on using the changeset viewer.