Posted: Mon Jul 30, 2007 9:54 am
@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:
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';
}