Make WordPress Core

Changeset 6114


Ignore:
Timestamp:
09/13/2007 09:27:26 PM (17 years ago)
Author:
ryan
Message:

Deprecate fakeit arg. Props Nazgul. fixes #4439

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/feed.php

    r6100 r6114  
    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}
  • trunk/wp-includes/post-template.php

    r6026 r6114  
    119119
    120120
    121 function get_the_excerpt($fakeit = true) {
     121function get_the_excerpt($deprecated = true) {
    122122    global $id, $post;
    123123    $output = '';
Note: See TracChangeset for help on using the changeset viewer.