diff options
author | thomascube <thomas@roundcube.net> | 2008-09-05 10:03:50 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-05 10:03:50 +0000 |
commit | be5f03b24842a15aca5635bf17fc202d6cadd99d (patch) | |
tree | faedcc80cef073cb0c58c4dafd75218ea8cfdf8d /program/steps/mail | |
parent | 2e6825b2e941e2031f9417676359380a77bba764 (diff) |
showImages attribute is skin template is obsolte: now set in user prefs
Diffstat (limited to 'program/steps/mail')
-rw-r--r-- | program/steps/mail/func.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index 70cd2c45e..e10843bd3 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -836,8 +836,7 @@ function rcmail_message_body($attrib) $ctype_secondary = strtolower($MESSAGE->structure->ctype_secondary); // list images after mail body - if (get_boolean($attrib['showimages']) - && $CONFIG['inline_images'] + if ($CONFIG['inline_images'] && $ctype_primary == 'multipart' && !empty($MESSAGE->attachments) && !strstr($message_body, '<html')) |