When parsing RSS feeds from WordPress there is a string catenation error in MagpieRSS that causes the item content to be stored as "Array" string instead of the actual content.
To fix this, change the "concat" method of rss_parse.inc to following:
function concat (&$str1, $str2="") {
if (!isset($str1) ) {
$str1="";
}
if (is_array($str1))
2009-12-28 14:08:06 UTC in MagpieRSS