Ignore:
Timestamp:
Mar 14, 2006 4:11:32 PM (7 years ago)
Author:
roundcube
Message:

Don't remove internal html tags in plaintext messages

File:
1 edited

Legend:

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

    r162 r163  
    10111011        $body = rcmail_print_body($part, $safe_mode); 
    10121012        $out .= '<div class="message-part">'; 
    1013         $out .= rcmail_mod_html_body($body, $attrib['id']); 
     1013         
     1014        if ($part['ctype_secondary']!='plain') 
     1015          $out .= rcmail_mod_html_body($body, $attrib['id']); 
     1016        else 
     1017          $out .= $body; 
     1018 
    10141019        $out .= "</div>\n"; 
    10151020        } 
Note: See TracChangeset for help on using the changeset viewer.