Index: trunk/phase3/languages/Language.php |
— | — | @@ -1716,7 +1716,7 @@ |
1717 | 1717 | */ |
1718 | 1718 | protected static function convertDoubleWidth( $string ) { |
1719 | 1719 | $string = preg_replace( '/\xef\xbc([\x80-\xbf])/e', 'chr((ord("$1") & 0x3f) + 0x20)', $string ); |
1720 | | - $string = preg_replace( '/\xef\xbd([\x80-\x99])/e', 'chr((ord("$1") & 0x3f) + 0x60)', $string ); |
| 1720 | + $string = preg_replace( '/\xef\xbd([\x80-\x9a])/e', 'chr((ord("$1") & 0x3f) + 0x60)', $string ); |
1721 | 1721 | return $string; |
1722 | 1722 | } |
1723 | 1723 | |