From 165807d39f77252fcc90fdc405dc0773603b97de Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 29 Jun 2017 00:04:43 +0000 Subject: [PATCH] Administration: In `WP_List_Table::comments_bubble()`, replace the mdash with its HTML entity for consistency with the similar code in other list tables. Props afercia. See #40659, #32152. Built from https://develop.svn.wordpress.org/trunk@40960 git-svn-id: http://core.svn.wordpress.org/trunk@40810 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-list-table.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index dedfec9340..ee6c6e5700 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -656,7 +656,7 @@ class WP_List_Table { // No comments at all. if ( ! $approved_comments && ! $pending_comments ) { - printf( '%s', + printf( '%s', __( 'No comments' ) ); // Approved comments have different display depending on some conditions. diff --git a/wp-includes/version.php b/wp-includes/version.php index c8a53b1212..96ce9ac03d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-40959'; +$wp_version = '4.9-alpha-40960'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.