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
This commit is contained in:
Andrew Nacin 2010-07-06 20:41:07 +00:00
parent 66a16124a4
commit 60c561889b
1 changed files with 1 additions and 1 deletions

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