From 83faec0a8fe961649e1022b05c1a7dc5e09bdf06 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 29 Apr 2013 13:42:56 +0000 Subject: [PATCH] Remove an extra argument passed to get_the_content() in the deprecated the_content_rss(). props rlerdorf. see #24210. git-svn-id: http://core.svn.wordpress.org/trunk@24128 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/deprecated.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wp-includes/deprecated.php b/wp-includes/deprecated.php index c83bca6a8a..a7efb91a13 100644 --- a/wp-includes/deprecated.php +++ b/wp-includes/deprecated.php @@ -1691,8 +1691,6 @@ function the_author_ID() { * @subpackage Feed * @since 0.71 * @uses apply_filters() Calls 'the_content_rss' on the content before processing. - * @see get_the_content() For the $more_link_text, $stripteaser, and $more_file - * parameters. * * @deprecated 2.9.0 * @deprecated Use the_content_feed() @@ -1706,7 +1704,7 @@ function the_author_ID() { */ function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file='', $cut = 0, $encode_html = 0) { _deprecated_function( __FUNCTION__, '2.9', 'the_content_feed' ); - $content = get_the_content($more_link_text, $stripteaser, $more_file); + $content = get_the_content($more_link_text, $stripteaser); $content = apply_filters('the_content_rss', $content); if ( $cut && !$encode_html ) $encode_html = 2;