Changeset 27283 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 02/26/2014 04:40:03 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r27262 r27283 473 473 * @since 1.5.0 474 474 * 475 * @param string|int $date Formatted date string or Unix timestamp. 476 * @param string $d The format of the date. 477 */ 478 return apply_filters( 'get_comment_date', $date, $d ); 475 * @param string|int $date Formatted date string or Unix timestamp. 476 * @param string $d The format of the date. 477 * @param object $comment The comment object. 478 */ 479 return apply_filters( 'get_comment_date', $date, $d, $comment ); 479 480 } 480 481 … … 821 822 * @param bool $gmt Whether the GMT date is in use. 822 823 * @param bool $translate Whether the time is translated. 823 */ 824 return apply_filters( 'get_comment_time', $date, $d, $gmt, $translate ); 824 * @param object $comment The comment object. 825 */ 826 return apply_filters( 'get_comment_time', $date, $d, $gmt, $translate, $comment ); 825 827 } 826 828
Note: See TracChangeset
for help on using the changeset viewer.