diff --git a/wp-admin/comment.php b/wp-admin/comment.php index 7e86f03cb0..24b0e16e40 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -195,8 +195,8 @@ if ( $comment->comment_approved != '0' ) { // if not unapproved printf( __( '%2$s at %3$s' ), esc_url( get_comment_link( $comment->comment_ID ) ), /* translators: comment date format. See http://php.net/date */ - get_comment_date( __( 'Y/m/d' ) ), - get_comment_date( get_option( 'time_format' ) ) + get_comment_date( __( 'Y/m/d' ), $comment ), + get_comment_date( get_option( 'time_format' ), $comment ) ); ?> diff --git a/wp-includes/class-walker-comment.php b/wp-includes/class-walker-comment.php index c8c379961b..75d5e466c3 100644 --- a/wp-includes/class-walker-comment.php +++ b/wp-includes/class-walker-comment.php @@ -271,7 +271,7 @@ class Walker_Comment extends Walker {
@@ -321,7 +321,7 @@ class Walker_Comment extends Walker { diff --git a/wp-includes/theme-compat/comments-popup.php b/wp-includes/theme-compat/comments-popup.php index bd7a5db71a..1643d8f7ff 100644 --- a/wp-includes/theme-compat/comments-popup.php +++ b/wp-includes/theme-compat/comments-popup.php @@ -52,7 +52,7 @@ if ( post_password_required($post) ) { // and it doesn't match the cookie%4$s'), get_comment_author_link( $comment ), get_comment_date(), get_comment_ID(), get_comment_time()); ?>
+%4$s'), get_comment_author_link( $comment ), get_comment_date( '', $comment ), get_comment_ID(), get_comment_time()); ?>