- fix bug in css cleanup of html messages

release-0.6
alecpl 15 years ago
parent fdf8750708
commit 5799531e3f

@ -938,7 +938,7 @@ function rcmail_message_body($attrib)
$body = rcmail_print_body($part, array('safe' => $safe_mode, 'plain' => !$CONFIG['prefer_html'])); $body = rcmail_print_body($part, array('safe' => $safe_mode, 'plain' => !$CONFIG['prefer_html']));
if ($part->ctype_secondary == 'html') if ($part->ctype_secondary == 'html')
$out .= html::div('message-htmlpart', rcmail_html4inline($body, $attrib['id'])); $out .= html::div('message-htmlpart', rcmail_html4inline($body, $attrib['id'] . ' div.rcmBody'));
else else
$out .= html::div('message-part', $body); $out .= html::div('message-part', $body);
} }
@ -1036,6 +1036,9 @@ function rcmail_html4inline($body, $container_id)
array('<div class="rcmBody"\\1>', '</div>'), array('<div class="rcmBody"\\1>', '</div>'),
$out); $out);
if (!preg_match('/<div class="rcmBody"/', $out))
$out = '<div class="rcmBody">' . $out . '</div>';
// quote <? of php and xml files that are specified as text/html // quote <? of php and xml files that are specified as text/html
$out = preg_replace(array('/<\?/', '/\?>/'), array('&lt;?', '?&gt;'), $out); $out = preg_replace(array('/<\?/', '/\?>/'), array('&lt;?', '?&gt;'), $out);

Loading…
Cancel
Save