diff options
author | svncommit <devs@roundcube.net> | 2006-04-26 21:49:38 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-04-26 21:49:38 +0000 |
commit | f8d0a5cb18456756cfe08626b851aaaa4953faa3 (patch) | |
tree | f72ab20b3a29834706bdda92646783f00629db31 /program/steps | |
parent | f1bed7462cf076270c53ca67979390741e812e7b (diff) |
Corrected issue forwarding attachments that use content-description rather than filename or name disposition headers
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/compose.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 5969e05a8..d278279d9 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -414,6 +414,11 @@ function rcmail_create_forward_body($body) $_SESSION['compose']['attachments'][] = array('name' => $part->ctype_parameters['name'], 'mimetype' => $part->ctype_primary . '/' . $part->ctype_secondary, 'path' => $tmp_path); + + else if ($part->headers['content-description']) + $_SESSION['compose']['attachments'][] = array('name' => $part->headers['content-description'], + 'mimetype' => $part->ctype_primary . '/' . $part->ctype_secondary, + 'path' => $tmp_path); } } } |