Hi there,
I got that issue, that it always renders a "1" at the end of the feed.
Feed outpu looks like:
</item></channel></rss>
1
My PHP looks like this:
// retrieve the RSS module
$rss = $modules->get("MarkupRSS");
// find the pages you want to appear in the feed.
// this can be any group of pages returned by $pages->find() or $page->children(), etc.
$items = $home->children('template=post')->reverse()->find('start=6');
// send the output of the RSS feed, and you are done
echo $rss->render($items);
Thanks