From ec182d74a6147e2ce481fdcb73029ad04276cd12 Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 13 Sep 2007 21:27:26 +0000 Subject: [PATCH] Deprecate fakeit arg. Props Nazgul. fixes #4439 git-svn-id: http://svn.automattic.com/wordpress/trunk@6114 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/feed.php | 2 +- wp-includes/post-template.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/feed.php b/wp-includes/feed.php index ccdd1b0fc..549e749a7 100644 --- a/wp-includes/feed.php +++ b/wp-includes/feed.php @@ -65,7 +65,7 @@ function the_content_rss($more_link_text='(more...)', $stripteaser=0, $more_file function the_excerpt_rss() { - $output = get_the_excerpt(true); + $output = get_the_excerpt(); echo apply_filters('the_excerpt_rss', $output); } diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 45f75ad6a..4a2c4a277 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -118,7 +118,7 @@ function the_excerpt() { } -function get_the_excerpt($fakeit = true) { +function get_the_excerpt($deprecated = true) { global $id, $post; $output = ''; $output = $post->post_excerpt;