From: stekkel Date: Sun, 6 Oct 2002 17:46:00 +0000 (+0000) Subject: insert empty line before the forward header X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d5181a1d9b21cf39e2981d64937025c1c2b91092;p=squirrelmail.git insert empty line before the forward header Thnx Cor Bosman. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3772 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/compose.php b/src/compose.php index 4195fb39..d4b3d7c1 100644 --- a/src/compose.php +++ b/src/compose.php @@ -333,6 +333,7 @@ if ($send) { $body = $newBody; do_hook('compose_send'); $composeMessage=$compose_messages[$session]; + $Result = sendMessage($composeMessage); if (! $Result) { showInputForm($session); @@ -642,6 +643,7 @@ function newMail ($mailbox='', $passed_id='', $passed_ent_id='', $action='', $se $body = getforwardHeader($orig_header) . $body; sqUnWordWrap($body); $composeMessage = getAttachments($message, $composeMessage, $passed_id, $entities, $imapConnection); + $body = "\n" . $body; break; case ('forward_as_attachment'): $composeMessage = getMessage_RFC822_Attachment($message, $composeMessage, $passed_id, $passed_ent_id, $imapConnection);