diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 8324ac2aea..f16e46ce34 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -1071,7 +1071,9 @@ function get_sample_permalink_html( $id, $new_title = null, $new_slug = null ) { $post_name_html = '' . $post_name_abridged . ''; $display_link = str_replace(array('%pagename%','%postname%'), $post_name_html, $permalink); $view_link = str_replace(array('%pagename%','%postname%'), $post_name, $permalink); - $return = '' . __('Permalink:') . "\n" . '' . $display_link . "\n"; + $return = '' . __('Permalink:') . "\n"; + $return .= '' . $display_link . "\n"; + $return .= '‎'; // Fix bi-directional text display defect in RTL languages. $return .= '' . __('Edit') . "\n"; $return .= '' . $post_name . "\n"; if ( isset($view_post) )