Make WordPress Core

Ticket #2374: 2374.diff

File 2374.diff, 704 bytes (added by westi, 18 years ago)

Replacement patch against current trunk

  • wp-includes/general-template.php

     
    612612}
    613613
    614614
     615function the_modified_date($d = '') {
     616        echo apply_filters('the_modified_date', get_the_modified_date($d), $d);
     617}
     618
     619
     620function get_the_modified_date($d = '') {
     621        if ( '' == $d )
     622                $the_time = get_post_modified_time(get_settings('date_format'));
     623        else
     624                $the_time = get_post_modified_time($d);
     625        return apply_filters('get_the_modified_date', $the_time, $d);
     626}
     627
     628
    615629function the_time( $d = '' ) {
    616630        echo apply_filters('the_time', get_the_time( $d ), $d);
    617631}