From: Sven Schöling Date: Wed, 18 May 2011 13:25:04 +0000 (+0200) Subject: Nachträglicher Fix zu Bug 1332: Webdav Links in Szenarien wo lxoffice im web root... X-Git-Tag: release-2.6.3~25^2~18 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=d4ea1fa81c16987e01378209c49fc7b94a0b0a7d;p=kivitendo-erp.git Nachträglicher Fix zu Bug 1332: Webdav Links in Szenarien wo lxoffice im web root installiert ist. --- diff --git a/SL/Common.pm b/SL/Common.pm index dae75322f..c0bca0195 100644 --- a/SL/Common.pm +++ b/SL/Common.pm @@ -372,9 +372,8 @@ sub webdav_folder { mkdir_with_parents($path); } else { - my $base_path = substr($ENV{'SCRIPT_NAME'}, 1); + my $base_path = $ENV{'SCRIPT_NAME'}; $base_path =~ s|[^/]+$||; - $base_path =~ s|/$||; # wo kommt der wert für dir her? es wird doch gar nichts übergeben? fix für strict my $dir jb 21.2. if (opendir my $dir, $path) { foreach my $file (sort { lc $a cmp lc $b } readdir $dir) { @@ -390,7 +389,7 @@ sub webdav_folder { push @{ $form->{WEBDAV} }, { 'name' => $fname, - 'link' => "$base_path/$file", + 'link' => $base_path . $file, 'type' => $is_directory ? $main::locale->text('Directory') : $main::locale->text('File'), }; }