Jonas does not support ISO-8859-1 RSS stream. Index: lib/FeedParser.php =================================================================== RCS file: /repository/jonah/lib/FeedParser.php,v retrieving revision 1.8 diff -u -r1.8 FeedParser.php --- lib/FeedParser.php 2 Jan 2007 12:48:21 -0000 1.8 +++ lib/FeedParser.php 7 Jan 2007 17:42:18 -0000 @@ -111,7 +111,11 @@ function init() { // Create the XML parser. - $this->parser = xml_parser_create($this->charset); + if ((strtolower($this->charset) != "utf-8") && + (strtolower($this->charset) != "us-ascii")) + $this->parser = xml_parser_create("ISO-8859-1"); + else + $this->parser = xml_parser_create($this->charset); xml_set_object($this->parser, $this); xml_parser_set_option($this->parser, XML_OPTION_CASE_FOLDING, false); xml_parser_set_option($this->parser, XML_OPTION_TARGET_ENCODING, 'UTF-8'); Created Thursday 03 January 2008