Ticket #9211: 9211.2.diff
File 9211.2.diff, 778 bytes (added by , 14 years ago) |
---|
-
wp-includes/default-widgets.php
632 632 $number = 15; 633 633 634 634 if ( !$comments = wp_cache_get( 'recent_comments', 'widget' ) ) { 635 $comments = $wpdb->get_results("SELECT * FROM $wpdb->comments WHERE comment_approved = '1' ORDER BY comment_date_gmt DESC LIMIT 15");635 $comments = $wpdb->get_results("SELECT $wpdb->comments.* FROM $wpdb->comments JOIN $wpdb->posts ON $wpdb->posts.ID = $wpdb->comments.comment_post_ID WHERE comment_approved = '1' AND post_status = 'publish' ORDER BY comment_date_gmt DESC LIMIT 15"); 636 636 wp_cache_add( 'recent_comments', $comments, 'widget' ); 637 637 } 638 638