Skip to content

Commit

Permalink
- Fix attachment names encoding broken in r4232
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Nov 22, 2010
1 parent 11a61a8 commit 57388f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions program/steps/mail/sendmail.inc
Original file line number Diff line number Diff line change
Expand Up @@ -508,12 +508,12 @@ if (is_array($_SESSION['compose']['attachments']))

// .eml attachments send inline
$MAIL_MIME->addAttachment($file,
$ctype,
$ctype,
$attachment['name'],
($attachment['data'] ? false : true),
($ctype == 'message/rfc822' ? '8bit' : 'base64'),
($ctype == 'message/rfc822' ? 'inline' : 'attachment'),
'', '', '',
$message_charset, '', '',
$CONFIG['mime_param_folding'] ? 'quoted-printable' : NULL,
$CONFIG['mime_param_folding'] == 2 ? 'quoted-printable' : NULL
);
Expand Down

0 comments on commit 57388f9

Please sign in to comment.