forked from extern/egroupware
Fix inline forward an email from draft folder does not include attachments
This commit is contained in:
parent
ed6069aa4d
commit
4b6293cfe1
@ -1754,7 +1754,7 @@ class mail_compose
|
||||
if(($attachments = $mail_bo->getMessageAttachments($_uid,$_partID))) {
|
||||
//error_log(__METHOD__.__LINE__.':'.array2string($attachments));
|
||||
foreach($attachments as $attachment) {
|
||||
if (!($attachment['cid'] && preg_match("/image\//",$attachment['mimeType'])))
|
||||
if (!($attachment['cid'] && preg_match("/image\//",$attachment['mimeType'])) || $attachment['disposition'] == 'attachment')
|
||||
{
|
||||
$this->addMessageAttachment($_uid, $attachment['partID'],
|
||||
$_folder,
|
||||
|
Loading…
Reference in New Issue
Block a user