diff options
author | alecpl <alec@alec.pl> | 2008-09-04 13:50:11 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-09-04 13:50:11 +0000 |
commit | 30694e4a1201c5e72fb52e59ecc79a1a06296f9b (patch) | |
tree | f9dc0a688ef035b7d03bc1f909c4f729317763fe /program/steps | |
parent | 15187021bdc0a82d63979d64259664d9aeacdc2a (diff) |
- Truncate very long (above 50 characters) attachment filenames when displaying
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/show.inc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index b0dcf389b..822934a74 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -150,6 +150,14 @@ function rcmail_message_attachments($attrib) $ol .= html::tag('li', null, sprintf("%s (%s)", Q($attach_prop->filename), Q(show_bytes($attach_prop->size)))); } else { + if (rc_strlen($attach_prop->filename) > 50) { + $filename = rc_substr($attach_prop->filename, 0, 25) . '...' . rc_substr($attach_prop->filename, strlen($attach_prop->filename)-20, 20); + $title = $attach_prop->filename; + } else { + $filename = $attach_prop->filename; + $title = ''; + } + $ol .= html::tag('li', null, html::a(array( 'href' => $MESSAGE->get_part_url($attach_prop->mime_id), @@ -158,8 +166,9 @@ function rcmail_message_attachments($attrib) JS_OBJECT_NAME, $attach_prop->mime_id, $attach_prop->mimetype), + 'title' => Q($title), ), - Q($attach_prop->filename))); + Q($filename))); } } |