Deprecate fakeit arg. Props Nazgul. fixes #4439

git-svn-id: http://svn.automattic.com/wordpress/trunk@6114 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-09-13 21:27:26 +00:00
parent b36db5619b
commit ec182d74a6
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;