From be72fb3597c21ca3aaa058adf41bb72d53d197c7 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Fri, 28 Dec 2012 06:40:57 -0500 Subject: [PATCH] Unified attachments filenames handling for message parts without a filename --- program/steps/mail/compose.inc | 11 +---------- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 379e920..74c6d5f 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -1154,16 +1154,7 @@ } $mimetype = $part->ctype_primary . '/' . $part->ctype_secondary; - $filename = $part->filename; - if (!strlen($filename)) { - if ($mimetype == 'text/html') { - $filename = rcube_label('htmlmessage'); - } - else { - $filename = 'Part_'.$pid; - } - $filename .= '.' . $part->ctype_secondary; - } + $filename = rcmail_attachment_name($part); $attachment = array( 'group' => $COMPOSE['id'], -- Gitblit v1.9.1