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';
}