diff options
author | thomascube <thomas@roundcube.net> | 2008-08-15 21:47:31 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-08-15 21:47:31 +0000 |
commit | 4ca10b8d511d85a4d575af355b0a6739d5a05958 (patch) | |
tree | 236a88fa81e490b751f30a8205b142866503787d /bin | |
parent | d4c01cadbdcd871f6d1c289c77dbd399d202aefd (diff) |
Enable spellchecker for HTML editor
Diffstat (limited to 'bin')
-rw-r--r-- | bin/html2text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/html2text.php b/bin/html2text.php index 0f0e6ae14..2650bf2d6 100644 --- a/bin/html2text.php +++ b/bin/html2text.php @@ -6,6 +6,6 @@ require INSTALL_PATH.'program/include/iniset.php'; $converter = new html2text($HTTP_RAW_POST_DATA); header('Content-Type: text/plain; charset=UTF-8'); -print html_entity_decode($converter->get_text(), ENT_COMPAT, 'UTF-8'); +print html_entity_decode(trim($converter->get_text()), ENT_COMPAT, 'UTF-8'); ?> |