Make WordPress Core

Changeset 27211


Ignore:
Timestamp:
02/20/2014 05:58:42 PM (9 years ago)
Author:
DrewAPicture
Message:

Remove now-unnecessary vanity spacing of various hooks in wp-includes/query.php.

See #25514.

File:
1 edited

Legend:

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

    r27210 r27211  
    29602960             * @param WP_Query &$this The WP_Query instance (passed by reference).
    29612961             */
    2962             $where      = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
     2962            $where = apply_filters_ref_array( 'posts_where_paged', array( $where, &$this ) );
    29632963
    29642964            /**
     
    29702970             * @param WP_Query &$this   The WP_Query instance (passed by reference).
    29712971             */
    2972             $groupby    = apply_filters_ref_array( 'posts_groupby',     array( $groupby, &$this ) );
     2972            $groupby = apply_filters_ref_array( 'posts_groupby', array( $groupby, &$this ) );
    29732973
    29742974            /**
     
    29822982             * @param WP_Query &$this The WP_Query instance (passed by reference).
    29832983             */
    2984             $join       = apply_filters_ref_array( 'posts_join_paged',  array( $join, &$this ) );
     2984            $join = apply_filters_ref_array( 'posts_join_paged', array( $join, &$this ) );
    29852985
    29862986            /**
     
    29922992             * @param WP_Query &$this   The WP_Query instance (passed by reference).
    29932993             */
    2994             $orderby    = apply_filters_ref_array( 'posts_orderby',     array( $orderby, &$this ) );
     2994            $orderby = apply_filters_ref_array( 'posts_orderby', array( $orderby, &$this ) );
    29952995
    29962996            /**
     
    30023002             * @param WP_Query &$this    The WP_Query instance (passed by reference).
    30033003             */
    3004             $distinct   = apply_filters_ref_array( 'posts_distinct',    array( $distinct, &$this ) );
     3004            $distinct = apply_filters_ref_array( 'posts_distinct', array( $distinct, &$this ) );
    30053005
    30063006            /**
     
    30123012             * @param WP_Query &$this  The WP_Query instance (passed by reference).
    30133013             */
    3014             $limits     = apply_filters_ref_array( 'post_limits',       array( $limits, &$this ) );
     3014            $limits = apply_filters_ref_array( 'post_limits', array( $limits, &$this ) );
    30153015
    30163016            /**
     
    30223022             * @param WP_Query &$this  The WP_Query instance (passed by reference).
    30233023             */
    3024             $fields     = apply_filters_ref_array( 'posts_fields',      array( $fields, &$this ) );
     3024            $fields = apply_filters_ref_array( 'posts_fields', array( $fields, &$this ) );
    30253025
    30263026            /**
     
    30683068             * @param WP_Query &$this The WP_Query instance (passed by reference).
    30693069             */
    3070             $where      = apply_filters_ref_array( 'posts_where_request',       array( $where, &$this ) );
     3070            $where = apply_filters_ref_array( 'posts_where_request', array( $where, &$this ) );
    30713071
    30723072            /**
     
    30803080             * @param WP_Query &$this   The WP_Query instance (passed by reference).
    30813081             */
    3082             $groupby    = apply_filters_ref_array( 'posts_groupby_request',     array( $groupby, &$this ) );
     3082            $groupby = apply_filters_ref_array( 'posts_groupby_request', array( $groupby, &$this ) );
    30833083
    30843084            /**
     
    30923092             * @param WP_Query &$this The WP_Query instance (passed by reference).
    30933093             */
    3094             $join       = apply_filters_ref_array( 'posts_join_request',        array( $join, &$this ) );
     3094            $join = apply_filters_ref_array( 'posts_join_request', array( $join, &$this ) );
    30953095
    30963096            /**
     
    31043104             * @param WP_Query &$this   The WP_Query instance (passed by reference).
    31053105             */
    3106             $orderby    = apply_filters_ref_array( 'posts_orderby_request',     array( $orderby, &$this ) );
     3106            $orderby = apply_filters_ref_array( 'posts_orderby_request', array( $orderby, &$this ) );
    31073107
    31083108            /**
     
    31163116             * @param WP_Query &$this    The WP_Query instance (passed by reference).
    31173117             */
    3118             $distinct   = apply_filters_ref_array( 'posts_distinct_request',    array( $distinct, &$this ) );
     3118            $distinct = apply_filters_ref_array( 'posts_distinct_request', array( $distinct, &$this ) );
    31193119
    31203120            /**
     
    31283128             * @param WP_Query &$this  The WP_Query instance (passed by reference).
    31293129             */
    3130             $fields     = apply_filters_ref_array( 'posts_fields_request',      array( $fields, &$this ) );
     3130            $fields = apply_filters_ref_array( 'posts_fields_request', array( $fields, &$this ) );
    31313131
    31323132            /**
     
    31403140             * @param WP_Query &$this  The WP_Query instance (passed by reference).
    31413141             */
    3142             $limits     = apply_filters_ref_array( 'post_limits_request',       array( $limits, &$this ) );
     3142            $limits = apply_filters_ref_array( 'post_limits_request', array( $limits, &$this ) );
    31433143
    31443144            /**
Note: See TracChangeset for help on using the changeset viewer.