+Sat, 14 Oct 2006 Florent Bruneau <florent.bruneau@m4x.org>
+
+ * Bugfix: Signature encoding in replies
+ * Bugfix: Don't lose badly encoded messages
+
================================================================================
VERSION 1.4
{
if (isset($this->headers['content-type'])
&& preg_match('!charset="?([^;"]*)"?\s*(;|$)?!', $this->headers['content-type'], $matches)) {
- $body = iconv($matches[1], 'utf-8', $this->body);
+ $body = iconv($matches[1], 'utf-8//IGNORE', $this->body);
if (strlen($body) == 0) {
return false;
}