diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-12-26 18:49:06 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-12-26 18:49:06 +0100 |
commit | c942e4a2e9a97743850b4178ea66b3b33956e7f7 (patch) | |
tree | 8fda2746e6cd6e69fc74427c297f3113665fce00 /program/steps/utils/html2text.inc | |
parent | aabeab1e4e08ffba5d709aa71de1182dfeb698d1 (diff) | |
parent | 23b30e0afca5f9c31e05204c3a6ff3332791d3a1 (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'program/steps/utils/html2text.inc')
-rw-r--r-- | program/steps/utils/html2text.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/program/steps/utils/html2text.inc b/program/steps/utils/html2text.inc index e17665fec..c6481b197 100644 --- a/program/steps/utils/html2text.inc +++ b/program/steps/utils/html2text.inc @@ -24,10 +24,8 @@ $html = $HTTP_RAW_POST_DATA; // Replace emoticon images with its text representation $html = rcmail_replace_emoticons($html); -$converter = new html2text($html, false, true, 0); +$converter = new rcube_html2text($html, false, true, 0); header('Content-Type: text/plain; charset=UTF-8'); print rtrim($converter->get_text()); exit; - - |