List Tables: Replace the hyphen separator for titles and post/media states with a —.

Props McGuive7.
Fixes #23230.
Built from https://develop.svn.wordpress.org/trunk@35326


git-svn-id: http://core.svn.wordpress.org/trunk@35292 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-10-21 14:33:27 +00:00
parent 81524f3bfc
commit 4d0759afae
2 changed files with 3 additions and 3 deletions

View File

@ -1694,7 +1694,7 @@ function _post_states($post) {
if ( ! empty($post_states) ) {
$state_count = count($post_states);
$i = 0;
echo ' - ';
echo ' — ';
foreach ( $post_states as $state ) {
++$i;
( $i == $state_count ) ? $sep = '' : $sep = ', ';
@ -1741,7 +1741,7 @@ function _media_states( $post ) {
if ( ! empty( $media_states ) ) {
$state_count = count( $media_states );
$i = 0;
echo ' - ';
echo ' — ';
foreach ( $media_states as $state ) {
++$i;
( $i == $state_count ) ? $sep = '' : $sep = ', ';

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-35325';
$wp_version = '4.4-alpha-35326';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.