From 196cfa0d479d2ac25773ddb8fcdc36eb4ea498c5 Mon Sep 17 00:00:00 2001 From: thomasb Date: Mon, 18 Aug 2008 12:29:48 +0000 Subject: Fix bodystructure parsing (#1485280) git-svn-id: https://svn.roundcube.net/trunk@1657 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/lib/imap.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/lib/imap.inc b/roundcubemail/program/lib/imap.inc index 42aa0fa61..600b0d408 100644 --- a/roundcubemail/program/lib/imap.inc +++ b/roundcubemail/program/lib/imap.inc @@ -2580,7 +2580,7 @@ function iil_C_FetchStructureString(&$conn, $folder, $id) { $result .= $line; } while (!preg_match("/^$key/", $line)); - $result = trim(substr($result, strpos($result, 'BODYSTRUCTURE')+13, -(strlen($result)-strrpos($result, $key)+1))); + $result = trim(substr($result, strpos($result, 'BODYSTRUCTURE')+13)); } } return $result; -- cgit v1.2.3