No RSS feed for all categories?

Found a bug? Tell us!!
chessnut
Regular
Posts: 22
Joined: Wed Jul 18, 2007 9:57 am

Post by chessnut »

@puck: for rss, the parameters are different than for the php-sites:

the all-category-link in plugin_categories.tpl should be changed to:
index.php?serendipity[category]=all

and the rss-feed-link should be changed to:
rss.php?category=all

I made a slight change in the rss.php-file:

Code: Select all

if (isset($_GET['category'])) {
    $serendipity['GET']['category'] = $_GET['category'];
}
//this was added to show by default all categories in the feed
else {
	$serendipity['GET']['category'] = 'all';	
}
Post Reply