From 3db6ccefb0db56c824dc2793d07c2db6a0af33ea Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Thu, 13 Sep 2007 21:27:26 +0000 Subject: [PATCH] Deprecate fakeit arg. Props Nazgul. fixes #4439 git-svn-id: https://develop.svn.wordpress.org/trunk@6114 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 ccdd1b0fc1..549e749a7c 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 45f75ad6a2..4a2c4a277a 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;