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:
parent
b36db5619b
commit
ec182d74a6
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue