From 23a74b7e4db42c07897e5549afef0c52d164664f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 18 Nov 2015 17:33:07 +0000 Subject: [PATCH] I18N: Remove `` tag from translatable string in `wp-admin/includes/class-wp-comments-list-table.php`. Props ramiy. Fixes #34686. git-svn-id: https://develop.svn.wordpress.org/trunk@35666 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/class-wp-comments-list-table.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php index d3b582fc51..4a68221624 100644 --- a/src/wp-admin/includes/class-wp-comments-list-table.php +++ b/src/wp-admin/includes/class-wp-comments-list-table.php @@ -714,14 +714,15 @@ class WP_Comments_List_Table extends WP_List_Table { * @access public */ public function column_date( $comment ) { - $comment_url = esc_url( get_comment_link( $comment ) ); echo '
'; - /* translators: 2: comment date, 3: comment time */ - printf( __( '%2$s at %3$s' ), $comment_url, + echo ''; + /* translators: 1: comment date, 2: comment time */ + printf( __( '%1$s at %2$s' ), /* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ), $comment ), get_comment_date( get_option( 'time_format' ), $comment ) ); + echo ''; echo '
'; }