Changeset 5599 in subversion


Ignore:
Timestamp:
Dec 14, 2011 4:05:58 AM (18 months ago)
Author:
alec
Message:
  • Skip inline images (fixes issue where images used in HTML body were displayed below the body once again)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/steps/mail/func.inc

    r5596 r5599  
    10711071  if ($CONFIG['inline_images'] && !empty($MESSAGE->attachments)) { 
    10721072    foreach ($MESSAGE->attachments as $attach_prop) { 
     1073      // skip inline images 
     1074      if ($attach_prop->content_id && $attach_prop->disposition == 'inline') { 
     1075        continue; 
     1076      } 
     1077 
    10731078      // Content-Type: image/*... 
    10741079      if (preg_match('/^image\//i', $attach_prop->mimetype) || 
Note: See TracChangeset for help on using the changeset viewer.