From e965180dc10a792f3f2f4a0297454b22a3d69c7f Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@15371 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 1be12a452..3ed219178 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); } /**