Ticket #16152: 16152.patch
File 16152.patch, 571 bytes (added by , 14 years ago) |
---|
-
wp-includes/query.php
1696 1696 $tax_query[] = array( 1697 1697 'taxonomy' => 'category', 1698 1698 'terms' => $q['category__in'], 1699 'field' => 'term_id' 1699 'field' => 'term_id', 1700 'include_children' => false 1700 1701 ); 1701 1702 } 1702 1703 … … 1706 1707 'taxonomy' => 'category', 1707 1708 'terms' => $q['category__not_in'], 1708 1709 'operator' => 'NOT IN', 1710 'include_children' => false 1709 1711 ); 1710 1712 } 1711 1713