diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php
index dac06eb571..24933e1e14 100644
|
a
|
b
|
function utf8_uri_encode( $utf8_string, $length = 0, $encode_ascii_characters = |
| 1261 | 1261 | * | U+00E7 | ç | c | Latin small letter c with cedilla | |
| 1262 | 1262 | * | U+00E8 | è | e | Latin small letter e with grave | |
| 1263 | 1263 | * | U+00E9 | é | e | Latin small letter e with acute | |
| | 1264 | * | eU+0301 | é | e | Latin small letter e with combining acute accent | |
| 1264 | 1265 | * | U+00EA | ê | e | Latin small letter e with circumflex | |
| 1265 | 1266 | * | U+00EB | ë | e | Latin small letter e with diaeresis | |
| 1266 | 1267 | * | U+00EC | ì | i | Latin small letter i with grave | |
| … |
… |
function remove_accents( $string ) { |
| 1637 | 1638 | 'ç' => 'c', |
| 1638 | 1639 | 'è' => 'e', |
| 1639 | 1640 | 'é' => 'e', |
| | 1641 | 'é' => 'e', |
| 1640 | 1642 | 'ê' => 'e', |
| 1641 | 1643 | 'ë' => 'e', |
| 1642 | 1644 | 'ì' => 'i', |