diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-05-30 11:22:18 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-05-30 11:22:18 +0200 |
commit | 19cc5b91c963736fd06dd701d4a583ccdf4b5bfa (patch) | |
tree | 22730a489c8821a01aa235074e86f13cf735f29e /program/steps/mail/show.inc | |
parent | b9854b8cbecb21ada9ba4f25090d53f520ac6e9e (diff) |
Display Tiff as Jpeg in browsers without Tiff support (#1488452)
Diffstat (limited to 'program/steps/mail/show.inc')
-rw-r--r-- | program/steps/mail/show.inc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc index 7fcfafcaa..158ba31c8 100644 --- a/program/steps/mail/show.inc +++ b/program/steps/mail/show.inc @@ -61,7 +61,7 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) { $OUTPUT->set_env('mailbox', $mbox_name); // mimetypes supported by the browser (default settings) - $mimetypes = $RCMAIL->config->get('client_mimetypes', 'text/plain,text/html,text/xml,image/jpeg,image/gif,image/png,image/tiff,application/x-javascript,application/pdf,application/x-shockwave-flash'); + $mimetypes = $RCMAIL->config->get('client_mimetypes', 'text/plain,text/html,text/xml,image/jpeg,image/gif,image/png,image/bmp,image/tiff,application/x-javascript,application/pdf,application/x-shockwave-flash'); $mimetypes = is_string($mimetypes) ? explode(',', $mimetypes) : (array)$mimetypes; // Remove unsupported types, which makes that attachment which cannot be @@ -72,9 +72,11 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET)) { if (empty($_SESSION['browser_caps']['flash']) && ($key = array_search('application/x-shockwave-flash', $mimetypes)) !== false) { unset($mimetypes[$key]); } - // @TODO: we could convert TIFF to JPEG and display it if (empty($_SESSION['browser_caps']['tif']) && ($key = array_search('image/tiff', $mimetypes)) !== false) { - unset($mimetypes[$key]); + // we can convert tiff to jpeg + if (!$RCMAIL->config->get('im_convert_path')) { + unset($mimetypes[$key]); + } } $OUTPUT->set_env('mimetypes', $mimetypes); |