Skip to content
This repository has been archived by the owner on Mar 30, 2019. It is now read-only.

Commit

Permalink
The RSS feed should not limit the number of returned items (Fix #153)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Jun 21, 2014
1 parent 4e2beac commit 3100f6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion com_podcastmanager/site/models/feed.php
Expand Up @@ -193,7 +193,7 @@ protected function populateState($ordering = null, $direction = null)
{
$orderCol = 'a.publish_up';
$listOrder = 'DESC';
$limit = $input->get('limit', $app->getCfg('list_limit', 0), 'uint');
$limit = '*';
}
else
{
Expand Down

0 comments on commit 3100f6c

Please sign in to comment.