From f390ac2bde2493be936bd6c8fe509cc525b40725 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 6 Dec 2010 11:13:55 +0000 Subject: - Fix plaintext versions of HTML messages don't contain placeholders for emotions (#1485206) git-svn-id: https://svn.roundcube.net/trunk@4309 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/utils/html2text.inc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'roundcubemail/program/steps/utils') diff --git a/roundcubemail/program/steps/utils/html2text.inc b/roundcubemail/program/steps/utils/html2text.inc index ef74ec49e..15c6a52a4 100644 --- a/roundcubemail/program/steps/utils/html2text.inc +++ b/roundcubemail/program/steps/utils/html2text.inc @@ -19,7 +19,12 @@ */ -$converter = new html2text($HTTP_RAW_POST_DATA); +$html = $HTTP_RAW_POST_DATA; + +// Replace emoticon images with its text representation +$html = rcmail_replace_emoticons($html); + +$converter = new html2text($html); header('Content-Type: text/plain; charset=UTF-8'); print rtrim($converter->get_text()); -- cgit v1.2.3