Ticket #10053: 10053.diff
| File 10053.diff, 413 bytes (added by , 17 years ago) |
|---|
-
wp-includes/post.php
134 134 $r = wp_parse_args( $args, $defaults ); 135 135 136 136 $children = get_posts( $r ); 137 if ( !$children ) { 138 $kids = false; 137 $kids = array(); 138 139 if ( !$children ) 139 140 return $kids; 140 }141 141 142 142 update_post_cache($children); 143 143