diff --git a/wp-includes/class-walker-comment.php b/wp-includes/class-walker-comment.php index 92115714ad..a43c73c11b 100644 --- a/wp-includes/class-walker-comment.php +++ b/wp-includes/class-walker-comment.php @@ -333,15 +333,21 @@ class Walker_Comment extends Walker {
-
+
%s', + esc_url( get_comment_link( $comment, $args ) ), + sprintf( + /* translators: 1: Comment date, 2: Comment time. */ + __( '%1$s at %2$s' ), + get_comment_date( '', $comment ), + get_comment_time() + ) + ); ?> - - + +
- - - + ', + esc_url( get_comment_link( $comment, $args ) ), + get_comment_time( 'c' ), + sprintf( + /* translators: 1: Comment date, 2: Comment time. */ + __( '%1$s at %2$s' ), + get_comment_date( '', $comment ), + get_comment_time() + ) + ); + ?> + ', '' ); ?>
diff --git a/wp-includes/version.php b/wp-includes/version.php index 75e2a54804..c60a23b80b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49156'; +$wp_version = '5.6-alpha-49157'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.