- Add Content-Length header while attachments downloading (#1484256)
| | |
| | | CHANGELOG RoundCube Webmail |
| | | --------------------------- |
| | | |
| | | 2008/08/21 (alec) |
| | | ---------- |
| | | - Add Content-Length header while attachments downloading (#1484256) |
| | | - Fix In-Reply-To and References headers when composing saved draft |
| | | message (#1485288) |
| | | - Removed PHP4 class constructors |
| | | - Fix html message charset conversion for charsets with underline (#1485287) |
| | | |
| | | 2008/08/21 (estadtherr) |
| | | ---------- |
| | | - Fix escaping of To: and From: fields when building message body for reply |
| | |
| | | $OUTPUT->write(rcmail_print_body($part, array('safe' => $MESSAGE->is_safe, 'inline_html' => false))); |
| | | } |
| | | else { |
| | | header(sprintf('Content-Length: %d', $part->size)); |
| | | header(sprintf('Content-Disposition: %s; filename="%s";', |
| | | $_GET['_download'] ? 'attachment' : 'inline', |
| | | $part->filename ? abbreviate_string($part->filename, 55) : "roundcube.$ctype_secondary")); |