From 0d53bba47343aa510c2ea58b6b1267e50dd9035a Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Mon, 30 Apr 2012 21:20:50 +0000 Subject: [PATCH] Properly convert two special Z characters in convert_chars(). props Namely, SergeyBiryukov. fixes #20503. git-svn-id: https://develop.svn.wordpress.org/trunk@20653 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/formatting.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 31256b8f1f..a05a5673ae 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -1016,7 +1016,7 @@ function convert_chars($content, $deprecated = '') { '‹' => '‹', 'Œ' => 'Œ', '' => '', - 'Ž' => 'ž', + 'Ž' => 'Ž', '' => '', '' => '', '‘' => '‘', @@ -1032,7 +1032,7 @@ function convert_chars($content, $deprecated = '') { '›' => '›', 'œ' => 'œ', '' => '', - 'ž' => '', + 'ž' => 'ž', 'Ÿ' => 'Ÿ' );