Fix für falsche Syntax bei in Strings eingebetteten Variablen.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 11 Sep 2009 06:46:47 +0000 (08:46 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 11 Sep 2009 06:49:21 +0000 (08:49 +0200)
SL/Mailer.pm

index 5e28012..2e2a60c 100644 (file)
@@ -184,7 +184,7 @@ $self->{message}
 
       my $application    = ($attachment =~ /(^\w+$)|\.(html|text|txt|sql)$/) ? "text" : "application";
       my $content_type   = SL::MIME->mime_type_from_ext($filename);
-      $content_type      = "${application}/${self->{format}}" if (!$content_type && $self->{format});
+      $content_type      = "${application}/$self->{format}" if (!$content_type && $self->{format});
       $content_type    ||= 'application/octet-stream';
 
       open(IN, $attachment);