Deal with attachment filenames with / in them

This commit is contained in:
Jamie Cameron
2022-09-19 18:26:47 -07:00
parent 5868f8628d
commit 82100ca232

View File

@@ -3440,6 +3440,7 @@ foreach my $a (@$attach) {
}
$fn =~ s/ /_/g;
$fn =~ s/\#/_/g;
$fn =~ s/\//_/g;
$fn = &urlize($fn);
local @a;
local $detachfile = $detachurl;