From 23301b338b0616db60db353e27b9ee186e32eb8b Mon Sep 17 00:00:00 2001 From: stekkel Date: Sat, 5 Feb 2005 17:53:53 +0000 Subject: [PATCH] Fix typo. php 5 errors out on this. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@8764 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/deliver/Deliver.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/deliver/Deliver.class.php b/class/deliver/Deliver.class.php index 06245466..90fdf0c7 100644 --- a/class/deliver/Deliver.class.php +++ b/class/deliver/Deliver.class.php @@ -452,7 +452,7 @@ class Deliver { } $header[] = $contenttype . $rn; if ($encoding = $rfc822_header->encoding) { - $header[] .= 'Content-Transfer-Encoding: ' . $encoding . $rn; + $header[] = 'Content-Transfer-Encoding: ' . $encoding . $rn; } if ($rfc822_header->dnt) { $dnt = $rfc822_header->getAddr_s('dnt'); -- 2.25.1