From 4044c9390d752ceb8df0be463d9bed60d652b28a Mon Sep 17 00:00:00 2001 From: deuce <> Date: Thu, 2 Dec 2004 21:28:47 +0000 Subject: [PATCH] Allow the same attachment to be both inline and an attachment. --- web/lib/mime_decode.ssjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/lib/mime_decode.ssjs b/web/lib/mime_decode.ssjs index 9bc3e5fb64..e1c560a01f 100644 --- a/web/lib/mime_decode.ssjs +++ b/web/lib/mime_decode.ssjs @@ -76,7 +76,6 @@ function mime_decode(hdr, body) if(Message.attachments==undefined) Message.attachments=new Array; Message.attachments.push(disp[1]); - continue; } disp=pieces[0].match(/content-id:\s+\<?([^\<\>;\r\n]*)\>?/i); if(disp!=undefined) { @@ -84,7 +83,6 @@ function mime_decode(hdr, body) if(Message.inlines==undefined) Message.inlines=new Array; Message.inlines.push(disp[1]); - continue; } } /* Search for HTML encoded bit */ -- GitLab