Deprecate fakeit arg. Props Nazgul. fixes #4439

git-svn-id: https://develop.svn.wordpress.org/trunk@6114 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-09-13 21:27:26 +00:00
parent 8b7ae31cb9
commit 3db6ccefb0
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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;