From 0d4cf3619987c191e2116e2f2c15c05db3faef5c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 18 Nov 2015 17:34:27 +0000 Subject: [PATCH] I18N: Remove `` tag from translatable string in `wp-admin/includes/class-wp-comments-list-table.php`. Props ramiy. Fixes #34686. Built from https://develop.svn.wordpress.org/trunk@35666 git-svn-id: http://core.svn.wordpress.org/trunk@35630 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-comments-list-table.php | 7 ++++--- wp-includes/version.php | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index d3b582fc51..4a68221624 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/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 '
'; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 962d913251..a0901dcd6a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta4-35665'; +$wp_version = '4.4-beta4-35666'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.