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