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
This commit is contained in:
Andrew Nacin 2012-04-30 21:20:50 +00:00
parent 3f793e457c
commit 0d53bba473
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 = '') {
'›' => '›', '›' => '›',
'œ' => 'œ', 'œ' => 'œ',
'' => '', '' => '',
'ž' => '', 'ž' => 'ž',
'Ÿ' => 'Ÿ' 'Ÿ' => 'Ÿ'
); );