Revision a0a29e6d
Von Moritz Bunkus vor etwa 15 Jahren hinzugefügt
SL/Mailer.pm | ||
---|---|---|
184 | 184 |
|
185 | 185 |
my $application = ($attachment =~ /(^\w+$)|\.(html|text|txt|sql)$/) ? "text" : "application"; |
186 | 186 |
my $content_type = SL::MIME->mime_type_from_ext($filename); |
187 |
$content_type = "${application}/${self->{format}}" if (!$content_type && $self->{format});
|
|
187 |
$content_type = "${application}/$self->{format}" if (!$content_type && $self->{format});
|
|
188 | 188 |
$content_type ||= 'application/octet-stream'; |
189 | 189 |
|
190 | 190 |
open(IN, $attachment); |
Auch abrufbar als: Unified diff
Fix für falsche Syntax bei in Strings eingebetteten Variablen.