From: Michael M Slusarz Date: Wed, 17 Feb 2010 06:46:37 +0000 (-0700) Subject: Bug #8868: Fix charset when converting html -> text X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2138891491ba481bda561a3fed7efa8d79f76240;p=horde.git Bug #8868: Fix charset when converting html -> text --- diff --git a/imp/compose.php b/imp/compose.php index a032c7c1f..edb8fdfd3 100644 --- a/imp/compose.php +++ b/imp/compose.php @@ -626,7 +626,7 @@ if (!is_null($oldrtemode) && ($oldrtemode != $rtemode)) { array('

 

', '

' . $imp_compose->text2html($sig) . '

'), $msg); } else { - $msg = Horde_Text_Filter::filter($msg, 'html2text', array('charset' => $charset, 'wrap' => false)); + $msg = Horde_Text_Filter::filter($msg, 'html2text', array('charset' => Horde_Nls::getCharset(), 'wrap' => false)); } }