For the person who seems to be frantically searching (lots of search referers) for how to use MagpieRSS with mod_content and content:encoded, here is how:

<pre class="code">
$rss = fetch_rss( $url );
foreach ( $rss->items as $item ) {
   echo "<p>title: $item['title']<br />";
   if ( isset($item['content']['encoded']) ) {
      echo $item['content']['encoded'];
   }
   echo "</p>";
}