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:
parent
3f793e457c
commit
0d53bba473
@ -1016,7 +1016,7 @@ function convert_chars($content, $deprecated = '') {
|
||||
'‹' => '‹',
|
||||
'Œ' => 'Œ',
|
||||
'' => '',
|
||||
'Ž' => 'ž',
|
||||
'Ž' => 'Ž',
|
||||
'' => '',
|
||||
'' => '',
|
||||
'‘' => '‘',
|
||||
@ -1032,7 +1032,7 @@ function convert_chars($content, $deprecated = '') {
|
||||
'›' => '›',
|
||||
'œ' => 'œ',
|
||||
'' => '',
|
||||
'ž' => '',
|
||||
'ž' => 'ž',
|
||||
'Ÿ' => 'Ÿ'
|
||||
);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user