Pass the comment object to the get_comment_date and get_comment_time.

props SergeyBiryukov.
fixes #19849.


git-svn-id: https://develop.svn.wordpress.org/trunk@27283 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
nacin 2014-02-26 16:40:03 +00:00
parent 6dde834d22
commit fb317e3d70
1 changed files with 6 additions and 4 deletions

View File

@ -472,10 +472,11 @@ function get_comment_date( $d = '', $comment_ID = 0 ) {
*
* @since 1.5.0
*
* @param string|int $date Formatted date string or Unix timestamp.
* @param string $d The format of the date.
* @param string|int $date Formatted date string or Unix timestamp.
* @param string $d The format of the date.
* @param object $comment The comment object.
*/
return apply_filters( 'get_comment_date', $date, $d );
return apply_filters( 'get_comment_date', $date, $d, $comment );
}
/**
@ -820,8 +821,9 @@ function get_comment_time( $d = '', $gmt = false, $translate = true ) {
* @param string $d Date format.
* @param bool $gmt Whether the GMT date is in use.
* @param bool $translate Whether the time is translated.
* @param object $comment The comment object.
*/
return apply_filters( 'get_comment_time', $date, $d, $gmt, $translate );
return apply_filters( 'get_comment_time', $date, $d, $gmt, $translate, $comment );
}
/**