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
This commit is contained in:
nacin 2010-07-06 20:41:07 +00:00
parent 23c773df72
commit e965180dc1

View File

@ -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);
}
/**