Make WordPress Core

Changeset 25946


Ignore:
Timestamp:
10/27/2013 07:58:24 AM (12 years ago)
Author:
DrewAPicture
Message:

Revert another instance where a WP property was assigned to a one-time variable for inline docs purposes.

Referencing a non-existent variable only in the docs here would have been the better choice.

See #25495.

File:
1 edited

Legend:

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

    r25945 r25946  
    315315            $this->query_vars['error'] = $error;
    316316
    317         $query_vars = $this->query_vars;
    318317        /**
    319318         * Filter the array of parsed query variables.
     
    323322         * @param array $query_vars The array of requested query variables.
    324323         */
    325         $this->query_vars = apply_filters( 'request', $query_vars );
     324        $this->query_vars = apply_filters( 'request', $this->query_vars );
    326325
    327326        /**
Note: See TracChangeset for help on using the changeset viewer.