Fix Encode: remove str to lower

Check code style
Этот коммит содержится в:
Igor V Belousov 2015-12-15 23:48:13 +03:00
родитель c4ec0e7e6e
Коммит 1463f60635

Просмотреть файл

@ -64,8 +64,6 @@ function EncodePunycodeIDN( $value )
$mb_internal_enc = mb_internal_encoding();
mb_internal_encoding( "UTF-8" );
$value = mb_strtolower( $value );
/* http://tools.ietf.org/html/rfc3492#section-6.3 */
$n = 0x80;
$delta = 0;
@ -315,6 +313,7 @@ function DecodePunycodeIDN($value)
);
++$i;
}
return implode( '', $output );
}