From 60c561889b0f12ec44f036ca8a7fb00e93dce280 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Tue, 6 Jul 2010 20:41:07 +0000 Subject: [PATCH] Pass feed type from the_content_feed to get_the_content_feed. props peaceablewhale, fixes #14214. git-svn-id: https://develop.svn.wordpress.org/trunk@15371 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/feed.php b/wp-includes/feed.php index 1be12a4529..3ed2191787 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -161,7 +161,7 @@ function get_the_content_feed($feed_type = null) { * @param string $feed_type The type of feed. rss2 | atom | rss | rdf */ function the_content_feed($feed_type = null) { - echo get_the_content_feed(); + echo get_the_content_feed($feed_type); } /**