From 8c36e7b3c477b85f00fd977b55774dbb572a1626 Mon Sep 17 00:00:00 2001 From: Konstantin Obenland Date: Wed, 15 Jul 2015 19:57:47 +0000 Subject: [PATCH] Feeds: Revert [32765] because of objections raised in #4575. git-svn-id: https://develop.svn.wordpress.org/trunk@33281 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/feed-rss2-comments.php | 2 +- src/wp-includes/feed-rss2.php | 2 +- src/wp-includes/feed.php | 35 -------------------------- 3 files changed, 2 insertions(+), 37 deletions(-) diff --git a/src/wp-includes/feed-rss2-comments.php b/src/wp-includes/feed-rss2-comments.php index 73d92ce6cc..c8e8d498ea 100644 --- a/src/wp-includes/feed-rss2-comments.php +++ b/src/wp-includes/feed-rss2-comments.php @@ -43,7 +43,7 @@ do_action( 'rss_tag_pre', 'rss2-comments' ); - + " rel="self" type="application/rss+xml" /> - + have_posts() ) { - $post_ids = array(); - $post_times = array(); - foreach( $wp_query->posts as $post ) { - $post_ids[] = $post->ID; - $post_times[] = $post->post_modified_gmt; - } - $postids = implode( "','", $post_ids ); - $max_post_time = max( $post_times ); - - if ( $wp_query->is_comment_feed() ) { - $max_comment_time = $wpdb->get_var( $wpdb->prepare( "SELECT MAX(comment_date_gmt) FROM $wpdb->comments WHERE comment_post_ID IN ('%s') AND comment_approved = '1'", $postids ) ); - - return max( $max_post_time, $max_comment_time ); - } - return $max_post_time; - } - - // Fallback to last time any post was modified or published. - return get_lastpostmodified( 'GMT' ); -} - /** * Retrieve the blog title for the feed title. *