fix [ 1344318 ] utf8 support for uri_escape/URL::Escape

This commit is contained in:
JT Smith 2006-04-28 21:11:59 +00:00
parent 2037bc510d
commit 8bace2e619
2 changed files with 2 additions and 1 deletions

View file

@ -119,7 +119,7 @@ The string to escape.
sub escape {
my $self = shift;
return uri_escape(shift);
return uri_escape_utf8(shift);
}