summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-05 11:13:58 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-05 11:13:58 +0000
commit5688a61f9b9c7cccd263670a1c2b316784204d69 (patch)
tree343d3a348f7a172202def6c0bbf631344923b103
parentb5961b540d1f2a9e467e56f4dd9700a7f1a29b09 (diff)
Codestyle: indent with spaces instead of tabs
git-svn-id: https://svn.roundcube.net/trunk@1746 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/steps/mail/sendmail.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/roundcubemail/program/steps/mail/sendmail.inc b/roundcubemail/program/steps/mail/sendmail.inc
index 1eb9389da..7d872abc7 100644
--- a/roundcubemail/program/steps/mail/sendmail.inc
+++ b/roundcubemail/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;