From 874a6b05dca2df7baccc29996df396b13fa08d0e Mon Sep 17 00:00:00 2001 From: estadtherr Date: Wed, 13 Sep 2006 04:49:18 +0000 Subject: Fixed bug #1484019 and #1484020 git-svn-id: https://svn.roundcube.net/trunk@342 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/lib/imap.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/program/lib/imap.inc') diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index b2e1d43c0..caa1d2721 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -1887,7 +1887,7 @@ function iil_C_HandlePartBody(&$conn, $mailbox, $id, $part, $mode){ $remaining = $bytes - $received; $line = iil_ReadLine($fp, 1024); $len = strlen($line); - if ($len > $remaining) substr($line, 0, $remaining); + if ($len > $remaining) $line = substr($line, 0, $remaining); $received += strlen($line); if ($mode==1) $result .= chop($line)."\n"; else if ($mode==2){ echo chop($line)."\n"; flush(); } -- cgit v1.2.3