Dateinamen im webdav aus utf8 decoden. Nicht NFC normalisieren, die müssen hinterher...
authorSven Schöling <s.schoeling@linet-services.de>
Fri, 2 Aug 2013 14:35:14 +0000 (16:35 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Fri, 2 Aug 2013 14:35:14 +0000 (16:35 +0200)
SL/Common.pm

index 733eb74..d626025 100644 (file)
@@ -21,6 +21,7 @@ use File::Slurp;
 use File::Spec;
 use List::MoreUtils qw(apply);
 use POSIX ();
+use Encode qw(decode);
 
 use SL::DBUtils;
 
@@ -355,7 +356,7 @@ sub webdav_folder {
     my $base_path = $ENV{'SCRIPT_NAME'};
     $base_path =~ s|[^/]+$||;
     if (opendir my $dir, $path) {
-      foreach my $file (sort { lc $a cmp lc $b } readdir $dir) {
+      foreach my $file (sort { lc $a cmp lc $b } map { decode("UTF-8", $_) } readdir $dir) {
         next if (($file eq '.') || ($file eq '..'));
 
         my $fname = $file;