From 7c32f37c8362ca6bbe3341676e401b1c5ea98806 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Fri, 7 Jan 2000 19:31:29 +0000 Subject: [PATCH] fixed the apostrophe problem (again) (: git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@130 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 9265afeb..0e5a1f2a 100644 --- a/functions/smtp.php +++ b/functions/smtp.php @@ -89,7 +89,7 @@ if ($reply_to != "") fputs($smtpConnection, "Reply-To: $reply_to\n"); - + $body = stripslashes($body); fputs($smtpConnection, "$body\n"); // send the body of the message fputs($smtpConnection, ".\n"); // end the DATA part -- 2.25.1