From b2ee72695e8c6cb1ce10d8c013caa95e8a5d7e6e Mon Sep 17 00:00:00 2001 From: alecpl Date: Wed, 9 Sep 2009 12:56:47 +0000 Subject: [PATCH] - fix bug in r2929 commit (#1486107) --- program/lib/imap.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/lib/imap.inc b/program/lib/imap.inc index c640c56e4..a57250141 100644 --- a/program/lib/imap.inc +++ b/program/lib/imap.inc @@ -1512,7 +1512,7 @@ function iil_C_FetchHeaders(&$conn, $mailbox, $message_set, $uidfetch=false, $bo // re-parse (see below) foreach ($reslines as $resln) { if (ord($resln[0])<=32) { - $l[$ln] .= (empty($lines[$ln])?'':"\n").trim($resln); + $lines[$ln] .= (empty($lines[$ln])?'':"\n").trim($resln); } else { $lines[++$ln] = trim($resln); }