Reparse the taxonomy query if query vars change. fixes #16622 for trunk

git-svn-id: https://develop.svn.wordpress.org/trunk@17489 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2011-03-02 04:10:21 +00:00
parent 0c45aa5b10
commit 9c2707c3e7
1 changed files with 7 additions and 7 deletions

View File

@ -1231,13 +1231,13 @@ class WP_Query {
var $is_post_type_archive = false;
/**
* Whether the tax query has been parsed once.
* Stores the ->query_vars state like md5(serialize( $this->query_vars ) ) so we know
* whether we have to re-parse because something has changed
*
* @since 3.1.0
* @access private
* @var bool
*/
var $parsed_tax_query = false;
var $query_vars_hash = false;
/**
* Resets query flags to false.
@ -1496,7 +1496,7 @@ class WP_Query {
$this->is_date = true;
}
$this->parsed_tax_query = false;
$this->query_vars_hash = false;
$this->parse_tax_query( $qv );
foreach ( $this->tax_query->queries as $tax_query ) {
@ -1682,7 +1682,7 @@ class WP_Query {
}
// Category stuff
if ( !empty($q['cat']) && '0' != $q['cat'] && !$this->is_singular && !$this->parsed_tax_query ) {
if ( !empty($q['cat']) && '0' != $q['cat'] && !$this->is_singular && md5(serialize( $this->query_vars ) ) != $this->query_vars_hash ) {
$q['cat'] = ''.urldecode($q['cat']).'';
$q['cat'] = addslashes_gpc($q['cat']);
$cat_array = preg_split('/[,\s]+/', $q['cat']);
@ -1736,7 +1736,7 @@ class WP_Query {
}
// Tag stuff
if ( '' != $q['tag'] && !$this->is_singular && !$this->parsed_tax_query ) {
if ( '' != $q['tag'] && !$this->is_singular && md5(serialize( $this->query_vars ) ) != $this->query_vars_hash ) {
if ( strpos($q['tag'], ',') !== false ) {
$tags = preg_split('/[,\s]+/', $q['tag']);
foreach ( (array) $tags as $tag ) {
@ -1808,7 +1808,7 @@ class WP_Query {
);
}
$this->parsed_tax_query = true;
$this->query_vars_hash = md5(serialize( $this->query_vars ) );
$this->tax_query = new WP_Tax_Query( $tax_query );
}