From 32c8d41cde85feb269fa4dda4d45d76782d182d6 Mon Sep 17 00:00:00 2001 From: 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: http://svn.automattic.com/wordpress/trunk@20653 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 31256b8f1..a05a5673a 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 = '') { '›' => '›', 'œ' => 'œ', '' => '', - 'ž' => '', + 'ž' => 'ž', 'Ÿ' => 'Ÿ' );