diff options
author | alecpl <alec@alec.pl> | 2010-09-29 13:32:41 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-09-29 13:32:41 +0000 |
commit | 11bcac5802dbdd01ee37b97e84f9a91c5777d9e6 (patch) | |
tree | 45e334d3d6204e6ef6133e0b80997f0c9951da24 /program/steps/utils/html2text.inc | |
parent | b3660bbdc3a7dcae7873016f10ddc0b7c82e17b7 (diff) |
- Fix HTML to plain text conversion doesn't handle citation blocks (#1486921)
Diffstat (limited to 'program/steps/utils/html2text.inc')
-rw-r--r-- | program/steps/utils/html2text.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/utils/html2text.inc b/program/steps/utils/html2text.inc index f97e1c67f..ef74ec49e 100644 --- a/program/steps/utils/html2text.inc +++ b/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; |