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
This commit is contained in:
nacin 2012-04-30 21:20:50 +00:00
parent ea30b9f210
commit 32c8d41cde
1 changed files with 2 additions and 2 deletions

View File

@ -1016,7 +1016,7 @@ function convert_chars($content, $deprecated = '') {
'‹' => '‹',
'Œ' => 'Œ',
'' => '',
'Ž' => 'ž',
'Ž' => 'Ž',
'' => '',
'' => '',
'‘' => '‘',
@ -1032,7 +1032,7 @@ function convert_chars($content, $deprecated = '') {
'›' => '›',
'œ' => 'œ',
'' => '',
'ž' => '',
'ž' => 'ž',
'Ÿ' => 'Ÿ'
);