BUG: number of items fetched for RSS is hardcoded
Posted: Wed Sep 28, 2005 5:51 pm
15 items only can be published via RSS.
This limitation in NOT configurable in the configuration file, it is hardcoded in rss.php:
$entries = serendipity_fetchEntries(null, true, 15, false, (isset($modified_since) ? $modified_since : false), 'timestamp DESC', '', false, true);
This should be replaced by:
$entries = serendipity_fetchEntries(null, true, $serendipity['fetchLimit'], false, (isset($modified_since) ? $modified_since : false), 'timestamp DESC', '', false, true);
Regards,
Romain.
This limitation in NOT configurable in the configuration file, it is hardcoded in rss.php:
$entries = serendipity_fetchEntries(null, true, 15, false, (isset($modified_since) ? $modified_since : false), 'timestamp DESC', '', false, true);
This should be replaced by:
$entries = serendipity_fetchEntries(null, true, $serendipity['fetchLimit'], false, (isset($modified_since) ? $modified_since : false), 'timestamp DESC', '', false, true);
Regards,
Romain.