Subject: | UTF-8 filename in Destination header |
For example, the copy {} function uses these lines:
my $destination = $request->header('Destination');
$destination = URI->new($destination)->path;
Problem is, that the utf8 challenges from another filed bug apply here
as well, so we need to do:
# no need to uri_unescape in the first step as URI treats
# escaped uris equally well and always returns uri_escaped anyway, so:
my $destination = $request->header('Destination');
$destination = uri_unescape(URI->new($destination)->path);