Aleksander Machniak
2012-12-01 0fa54df638a0b0f514d1bfba3cefb93e38991a35
program/steps/mail/compose.inc
@@ -733,8 +733,7 @@
        if ($part->ctype_secondary == 'html') {
        }
        else if ($part->ctype_secondary == 'enriched') {
            require_once(INSTALL_PATH . 'program/lib/enriched.inc');
            $body = enriched_to_html($body);
            $body = rcube_enriched::to_html($body);
        }
        else {
            // try to remove the signature
@@ -750,8 +749,7 @@
    }
    else {
        if ($part->ctype_secondary == 'enriched') {
            require_once(INSTALL_PATH . 'program/lib/enriched.inc');
            $body = enriched_to_html($body);
            $body = rcube_enriched::to_html($body);
            $part->ctype_secondary = 'html';
        }
@@ -763,8 +761,7 @@
            $body = $txt->get_text();
        }
        else if ($part->ctype_secondary == 'enriched') {
            require_once(INSTALL_PATH . 'program/lib/enriched.inc');
            $body = enriched_to_html($body);
            $body = rcube_enriched::to_html($body);
        }
        else {
            if ($part->ctype_secondary == 'plain' && $part->ctype_parameters['format'] == 'flowed') {