- Fix html editor mode setting when reopening draft message (#1485834)

release-0.6
alecpl 15 years ago
parent 595be80feb
commit 20ccd472f7

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail
===========================
- Fix html editor mode setting when reopening draft message (#1485834)
- Added quick search box menu (#1484304)
- Fix wrong column sort order icons (#1485823)
- Updated TinyMCE to 3.2.3 version

@ -363,7 +363,7 @@ function rcmail_compose_body($attrib)
}
else if ($compose_mode)
{
if ($isHtml && $MESSAGE->has_html_part())
if (($isHtml || $compose_mode == RCUBE_COMPOSE_DRAFT) && $MESSAGE->has_html_part())
{
$body = $MESSAGE->first_html_part();
$isHtml = true;

Loading…
Cancel
Save