From 9a1b5f93cd9fd999f82ff7cadf63b7a95e656588 Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Wed, 21 Oct 2015 14:32:02 +0000 Subject: [PATCH] List Tables: Replace the hyphen separator for titles and post/media states with a `—`. Props McGuive7. Fixes #23230. git-svn-id: https://develop.svn.wordpress.org/trunk@35326 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/template-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-admin/includes/template-functions.php b/src/wp-admin/includes/template-functions.php index ddbbcb9928..b65c4b1c4e 100644 --- a/src/wp-admin/includes/template-functions.php +++ b/src/wp-admin/includes/template-functions.php @@ -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 = ', ';