From 24c96b5c2c9a85f73b602379aa5ec970748ef7f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 14 Jan 2010 17:28:50 +0100 Subject: [PATCH] Webdav Links relativ statt absolut, sonst gibt es Probleme bei anderen Ports. --- SL/Common.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Common.pm b/SL/Common.pm index 7462d8b93..664bc6a08 100644 --- a/SL/Common.pm +++ b/SL/Common.pm @@ -388,7 +388,7 @@ sub webdav_folder { push @{ $form->{WEBDAV} }, { 'name' => $fname, - 'link' => ($ENV{"HTTPS"} ? "https://" : "http://") . $ENV{'SERVER_NAME'} . "/$base_path/$file", + 'link' => "/$base_path/$file", 'type' => $is_directory ? $main::locale->text('Directory') : $main::locale->text('File'), }; } -- 2.20.1