Make WordPress Core

Changeset 19125


Ignore:
Timestamp:
11/02/2011 11:08:05 PM (13 years ago)
Author:
nacin
Message:

Add a few characters to remove_accents(). props SergeyBiryukov. props ampt for [UT471]. fixes #9591.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/formatting.php

    r18955 r19125  
    565565        $chars = array(
    566566        // Decompositions for Latin-1 Supplement
     567        chr(194).chr(170) => 'a', chr(194).chr(186) => 'o',
    567568        chr(195).chr(128) => 'A', chr(195).chr(129) => 'A',
    568569        chr(195).chr(130) => 'A', chr(195).chr(131) => 'A',
     
    595596        chr(195).chr(187) => 'u', chr(195).chr(188) => 'u',
    596597        chr(195).chr(189) => 'y', chr(195).chr(190) => 'th',
    597         chr(195).chr(191) => 'y',
     598        chr(195).chr(191) => 'y', chr(195).chr(152) => 'O',
    598599        // Decompositions for Latin Extended-A
    599600        chr(196).chr(128) => 'A', chr(196).chr(129) => 'a',
Note: See TracChangeset for help on using the changeset viewer.