summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/utils/html2text.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 13:32:41 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-09-29 13:32:41 +0000
commit241e42eaf17c0a7d1d485af3202980c714dd26a4 (patch)
treedeee82b38341f08ba02a2600bb2aed726f41bf15 /roundcubemail/program/steps/utils/html2text.inc
parent175a16350ce53cebbbfd9f3d8e3639402cc338dd (diff)
- Fix HTML to plain text conversion doesn't handle citation blocks (#1486921)
git-svn-id: https://svn.roundcube.net/trunk@4013 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/utils/html2text.inc')
-rw-r--r--roundcubemail/program/steps/utils/html2text.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/utils/html2text.inc b/roundcubemail/program/steps/utils/html2text.inc
index f97e1c67f..ef74ec49e 100644
--- a/roundcubemail/program/steps/utils/html2text.inc
+++ b/roundcubemail/program/steps/utils/html2text.inc
@@ -22,7 +22,7 @@
$converter = new html2text($HTTP_RAW_POST_DATA);
header('Content-Type: text/plain; charset=UTF-8');
-print trim($converter->get_text());
+print rtrim($converter->get_text());
exit;