Fix attachment links for permalink structures containing category tag. Props andy. fixes #4699

git-svn-id: https://develop.svn.wordpress.org/trunk@7531 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-03-26 20:17:31 +00:00
parent 6dfc0cbf89
commit 9ce77cf8d8
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1036,7 +1036,7 @@ class WP_Query {
}
// Category stuff for nice URLs
if ( '' != $q['category_name'] ) {
if ( '' != $q['category_name'] && !$this->is_singular ) {
$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'], '/');