Make WordPress Core

Changeset 36138

Timestamp:
12/31/2015 05:15:23 PM (9 years ago)
Author:
rachelbaker
Message:

Feeds: Comments on attachments display in the site-wide comments RSS feed.

Individual attachment pages already have their own RSS comment feed, and would be expected to be included in the site-wide comments RSS feed.

Props jbrinley.
Fixes #15610

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/query.php

    r36128 r36138  
    31943194            } else { // Other non singular e.g. front
    31953195                $cjoin = "JOIN $wpdb->posts ON ( $wpdb->comments.comment_post_ID = $wpdb->posts.ID )";
    3196                 $cwhere = "WHERE post_status = 'publish' AND comment_approved = '1'";
     3196                $cwhere = "WHERE AND comment_approved = '1'";
    31973197                $cgroupby = '';
    31983198            }
  • trunk/tests/phpunit/tests/query/conditionals.php

    r35679 r36138  
    5656        $this->go_to( get_post_comments_feed_link( $post_id ) );
    5757        $this->assertQueryTrue('is_feed', 'is_single', 'is_singular', 'is_comment_feed');
     58
     59
     60
     61
     62
     63
     64
    5865    }
    5966
  • trunk/tests/phpunit/tests/query/results.php

    r35242 r36138  
    704704        $this->assertCount( 0, $result2 );
    705705    }
     706
     707
     708
     709
     710
     711
     712
     713
     714
     715
     716
     717
     718
     719
     720
    706721}
Note: See TracChangeset for help on using the changeset viewer.