diff options
author | alecpl <alec@alec.pl> | 2008-04-16 07:22:35 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-04-16 07:22:35 +0000 |
commit | e7d37ae9875eb0dfcb616930869d8391a94418af (patch) | |
tree | 9c9b5f2532e054698364f315f06e06506c99a0a0 /program/steps/mail/compose.inc | |
parent | f94a801d038fbc5278a32cbde7c1cfffb6f3779c (diff) |
- Decode entities when inserting HTML signature to plain text message (#1484990)
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r-- | program/steps/mail/compose.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 4c4121a35..9989a82b6 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -241,7 +241,7 @@ function rcmail_compose_headers($attrib) function rcmail_compose_header_from($attrib) { - global $IMAP, $MESSAGE, $DB, $USER, $OUTPUT, $compose_mode; + global $IMAP, $MESSAGE, $DB, $USER, $OUTPUT, $CONFIG, $compose_mode; // pass the following attributes to the form class $field_attrib = array('name' => '_from'); @@ -298,7 +298,7 @@ function rcmail_compose_header_from($attrib) { $h2t = new html2text($a_signatures[$identity_id]['text'], false, false); $plainTextPart = $h2t->get_text(); - $a_signatures[$identity_id]['plain_text'] = trim($plainTextPart); + $a_signatures[$identity_id]['plain_text'] = trim(html_entity_decode($plainTextPart, ENT_NOQUOTES, 'UTF-8')); } } |