RSS link in Site Map does not work since RSS links were modified. This will ADD "RSS Articles", "RSS Pages" and "RSS Comments" to the Site Map
Here's a fix:
In snews.php find this in function sitemap():
echo $link.'sitemap/">'.l('sitemap').'</a><br />';
echo $link.'rss/">'.l('rss_feed').'</a></p>';
echo '<p><strong>'.l('articles').'</strong></p>';
Replace the
red above with the
blue below:
echo $link.'sitemap/">'.l('sitemap').'</a><br />';
echo $link.'rss-articles/">'.l('rss_articles').'</a><br />';
echo $link.'rss-pages/">'.l('rss_pages').'</a><br />';
echo $link.'rss-comments/">'.l('rss_comments').'</a></p>';
echo '<p><strong>'.l('articles').'</strong></p>';