Make WordPress Core

Ticket #4439: 4439.diff

File 4439.diff, 753 bytes (added by Nazgul, 18 years ago)
  • wp-includes/feed.php

     
    6565
    6666
    6767function the_excerpt_rss() {
    68         $output = get_the_excerpt(true);
     68        $output = get_the_excerpt();
    6969        echo apply_filters('the_excerpt_rss', $output);
    7070}
    7171
  • wp-includes/post-template.php

     
    118118}
    119119
    120120
    121 function get_the_excerpt($fakeit = true) {
     121function get_the_excerpt($deprecated = true) {
    122122        global $id, $post;
    123123        $output = '';
    124124        $output = $post->post_excerpt;