Sanitize when querying against category name so that multiple-word subcategories match. props filosofo. fixes #8619

git-svn-id: https://develop.svn.wordpress.org/trunk@11121 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-04-29 16:25:33 +00:00
parent 7d9f7833ff
commit 9627196cb4
1 changed files with 1 additions and 0 deletions

View File

@ -1814,6 +1814,7 @@ class WP_Query {
// Category stuff for nice URLs
if ( '' != $q['category_name'] && !$this->is_singular ) {
$q['category_name'] = implode('/', array_map('sanitize_title', explode('/', $q['category_name'])));
$reqcat = get_category_by_path($q['category_name']);
$q['category_name'] = str_replace('%2F', '/', urlencode(urldecode($q['category_name'])));
$cat_paths = '/' . trim($q['category_name'], '/');