Ticket #2754: a.patch
| File a.patch, 761 bytes (added by , 20 years ago) |
|---|
-
wp-includes/
old new 93 93 $date = mysql2date( get_settings('date_format'), $comment->comment_date); 94 94 else 95 95 $date = mysql2date($d, $comment->comment_date); 96 return apply_filters('get_comment_date', $date );96 return apply_filters('get_comment_date', $date, $d); 97 97 } 98 98 99 99 function comment_date( $d = '' ) { … … 190 190 $date = mysql2date(get_settings('time_format'), $comment_date); 191 191 else 192 192 $date = mysql2date($d, $comment_date); 193 return apply_filters('get_comment_time', $date );193 return apply_filters('get_comment_time', $date, $d, $gmt); 194 194 } 195 195 196 196 function comment_time( $d = '' ) {