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.


git-svn-id: https://develop.svn.wordpress.org/trunk@25946 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2013-10-27 07:58:24 +00:00
parent 0969689efb
commit 5f3883cc8f

View File

@ -314,7 +314,6 @@ class WP {
if ( isset($error) )
$this->query_vars['error'] = $error;
$query_vars = $this->query_vars;
/**
* Filter the array of parsed query variables.
*
@ -322,7 +321,7 @@ class WP {
*
* @param array $query_vars The array of requested query variables.
*/
$this->query_vars = apply_filters( 'request', $query_vars );
$this->query_vars = apply_filters( 'request', $this->query_vars );
/**
* Fires once all query variables for the current request have been parsed.