diff options
author | thomascube <thomas@roundcube.net> | 2008-09-05 11:13:58 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-05 11:13:58 +0000 |
commit | 8b36d421283fbdc132fb8a1b39a905520735522b (patch) | |
tree | 263073bea4b01ada36434e195da736efe2d04ec8 /program/steps/mail/sendmail.inc | |
parent | 86d43ef6f550a553f736495d853328a8eb12a88d (diff) |
Codestyle: indent with spaces instead of tabs
Diffstat (limited to 'program/steps/mail/sendmail.inc')
-rw-r--r-- | program/steps/mail/sendmail.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index 1eb9389da..7d872abc7 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -292,11 +292,11 @@ if (is_array($_SESSION['compose']['attachments'])) // .eml attachments send inline $MAIL_MIME->addAttachment($attachment['path'], - $ctype, + $ctype, $attachment['name'], true, - ($ctype == 'message/rfc822' ? $transfer_encoding : 'base64'), + ($ctype == 'message/rfc822' ? $transfer_encoding : 'base64'), ($ctype == 'message/rfc822' ? 'inline' : 'attachment'), - $message_charset); + $message_charset); } } @@ -370,9 +370,9 @@ if ($store_target) { // folder may be existing but not subscribed (#1485241) if (!in_array_nocase($store_target, $IMAP->list_unsubscribed())) - $store_folder = $IMAP->create_mailbox($store_target, TRUE); + $store_folder = $IMAP->create_mailbox($store_target, TRUE); else if ($IMAP->subscribe($store_target)) - $store_folder = TRUE; + $store_folder = TRUE; } else $store_folder = TRUE; |