From eba6e84153993618cbd9d33b5effa2af802f272f Mon Sep 17 00:00:00 2001 From: lkehresman Date: Thu, 30 Nov 2000 03:03:14 +0000 Subject: [PATCH] fixed bug with one line length text message with an attachment not displaying. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@857 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/smtp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/smtp.php b/functions/smtp.php index a15144f7..9f595ca0 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -245,7 +245,7 @@ $body .= "Content-Type: text/plain\r\n"; $body .= "Content-Transfer-Encoding: 8bit\r\n\r\n"; - $body .= sqStripSlashes($passedBody) . "\r\n"; + $body .= sqStripSlashes($passedBody) . "\r\n\r\n"; fputs ($fp, $body); $attachmentlength = attachFiles($fp); -- 2.25.1