Ticket #12373: formatting_patch.diff

File formatting_patch.diff, 512 bytes (added by nstielau, 3 years ago)
  • wp-includes/formatting.php

     
    631631                // Euro Sign 
    632632                chr(226).chr(130).chr(172) => 'E', 
    633633                // GBP (Pound) Sign 
    634                 chr(194).chr(163) => ''); 
     634                chr(194).chr(163) => '', 
     635                // Inverted Question Mark, Inverted Exclaimation Point 
     636                chr(194).chr(191) => "", chr(194).chr(161) => ""); 
    635637 
    636638                $string = strtr($string, $chars); 
    637639        } else {