diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-05-18 09:01:12 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-05-18 09:01:12 +0200 |
commit | 59b765d83927cb9e81bf69656db3a7dbdc1b1b41 (patch) | |
tree | 82e2bd73653dd8e53c3f5af29ac69bf0105a1fa0 /program/steps | |
parent | 25804ec9cd69705f1b991ccc163e9f1c845fc3e3 (diff) |
Don't remove links when html signature is converted to text (#1489621)
Fix so when switching editor mode original version of signature is used (#1488849)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/compose.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc index 0ceb85db2..a3eb4b8a3 100644 --- a/program/steps/mail/compose.inc +++ b/program/steps/mail/compose.inc @@ -611,7 +611,7 @@ function rcmail_compose_header_from($attrib) $text = $html = $sql_arr['signature']; if ($sql_arr['html_signature']) { - $h2t = new rcube_html2text($sql_arr['signature'], false, false); + $h2t = new rcube_html2text($sql_arr['signature'], false, true); $text = trim($h2t->get_text()); } else { |