diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-09 12:56:47 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-09-09 12:56:47 +0000 |
| commit | 0efaf6cc6cdeaa13b2e220a0ea6bb698fb92577b (patch) | |
| tree | ccefff8b3f474e2b0bd8ce35d02a6ffbae3837df | |
| parent | 966c3c65754a9cc1f537c27a91306d510b0d2a57 (diff) | |
- fix bug in r2929 commit (#1486107)
git-svn-id: https://svn.roundcube.net/trunk@2938 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/lib/imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index c640c56e4..a57250141 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/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); } |
