summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-09-09 12:56:47 +0000
committeralecpl <alec@alec.pl>2009-09-09 12:56:47 +0000
commitb2ee72695e8c6cb1ce10d8c013caa95e8a5d7e6e (patch)
tree1348370e3de31b45ffee0d31a865fdeeefda5bfd
parentb590cb5fe3562001ba14845c08b447edb1e93fc2 (diff)
- fix bug in r2929 commit (#1486107)
-rw-r--r--program/lib/imap.inc2
1 files changed, 1 insertions, 1 deletions
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);
}