Move s/ /+ out of WP_Query, so that 'category_name=Some Category' works again. See #12891

git-svn-id: https://develop.svn.wordpress.org/trunk@16526 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-11-21 16:33:05 +00:00
parent 37842f40a2
commit eb6a65e501
2 changed files with 7 additions and 2 deletions

View File

@ -272,6 +272,11 @@ class WP {
}
}
// Convert urldecoded spaces back into +
foreach ( $GLOBALS['wp_taxonomies'] as $taxonomy => $t )
if ( $t->query_var && isset( $this->query_vars[$t->query_var] ) )
$this->query_vars[$t->query_var] = str_replace( ' ', '+', $this->query_vars[$t->query_var] );
// Limit publicly queried post_types to those that are publicly_queryable
if ( isset( $this->query_vars['post_type']) ) {
$queryable_post_types = get_post_types( array('publicly_queryable' => true) );
@ -603,4 +608,4 @@ class WP_MatchesMapRegex {
}
?>
?>

View File

@ -1507,7 +1507,7 @@ class WP_Query {
$q[$t->query_var] = wp_basename( $q[$t->query_var] );
}
$term = str_replace( ' ', '+', $q[$t->query_var] );
$term = $q[$t->query_var];
if ( strpos($term, '+') !== false ) {
$terms = preg_split( '/[+]+/', $term );