Changeset 5609
- Timestamp:
- 05/31/2007 03:19:38 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r5593 r5609 856 856 } else { 857 857 $out_cats[] = $cat; 858 $out_cats = arr y_merge($out_cats, get_term_children($cat, 'category'));858 $out_cats = array_merge($out_cats, get_term_children($cat, 'category')); 859 859 } 860 860 } … … 865 865 866 866 if ( !empty($out_cats) ) { 867 $ids = get_objects_in_term s($out_cats, 'category');867 $ids = get_objects_in_term($out_cats, 'category'); 868 868 if ( is_array($ids) && count($ids > 0) ) { 869 869 $out_posts = "'" . implode("', '", $ids) . "'";
Note: See TracChangeset
for help on using the changeset viewer.