From 6ab1bd9e63bd717eef40fcd9b39439c368a546eb Mon Sep 17 00:00:00 2001 From: ullgren Date: Sat, 9 Feb 2002 23:07:33 +0000 Subject: [PATCH] Fixed body retrival error on cyrus. (removed trailing space after command) git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2401 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/mime.php b/functions/mime.php index bf3ed74a..61ee7357 100644 --- a/functions/mime.php +++ b/functions/mime.php @@ -379,7 +379,7 @@ function mime_fetch_body($imap_stream, $id, $ent_id ) { $ent_id = 1; } - $cmd = "FETCH $id BODY[$ent_id] "; + $cmd = "FETCH $id BODY[$ent_id]"; $data = sqimap_run_command ($imap_stream, $cmd, true, $response, $message); do { -- 2.25.1