Fix "could not load message" error on valid empty message body (#1489228)

Conflicts:

	CHANGELOG
pull/88/head
Aleksander Machniak 11 years ago
parent e6a7be8b1f
commit 00c2a90f69

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix "could not load message" error on valid empty message body (#1489228)
- Fix handling of message/rfc822 attachments on message forward and edit (#1489214)
- Fix parsing of square bracket characters in IMAP response strings (#1489223)
- Don't clear References and in-Reply-To when a message is "edited as new" (#1489216)

@ -2509,7 +2509,11 @@ class rcube_imap_generic
$prev = '';
$found = true;
while ($bytes > 0) {
// empty body
if (!$bytes) {
$result = '';
}
else while ($bytes > 0) {
$line = $this->readLine(8192);
if ($line === NULL) {

Loading…
Cancel
Save