Changeset 9475
- Timestamp:
- 11/02/2008 08:53:15 PM (17 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
-
canonical.php (modified) (1 diff)
-
category-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/canonical.php
r9388 r9475 166 166 167 167 // tack on any additional query vars 168 if ( $redirect_url && $redirect['query']) {168 if ( $redirect_url && !empty($redirect['query']) ) { 169 169 if ( strpos($redirect_url, '?') !== false ) 170 170 $redirect_url .= '&'; -
trunk/wp-includes/category-template.php
r9360 r9475 63 63 $category_nicename = $category->slug; 64 64 65 if ( $ parent == $category_id ) // recursive recursion65 if ( $category->parent == $category_id ) // recursive recursion 66 66 $category->parent = 0; 67 67
Note: See TracChangeset
for help on using the changeset viewer.