diff options
| author | 2014-07-06 00:09:31 +0200 | |
|---|---|---|
| committer | 2014-07-06 00:09:31 +0200 | |
| commit | bc8eb560afd50290745ea6a500c0f930df2559eb (patch) | |
| tree | 476fe293b7d06841105bd5fbb211fd24861a87b0 /app/Controllers/feedController.php | |
| parent | b48dc25963553e4596a5ca10a3c823e895fbfd92 (diff) | |
Add TTL to control feed freshness
https://github.com/marienfressinaud/FreshRSS/issues/250
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index d30b60877..36425ca9b 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -233,7 +233,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { $feeds = array ($feed); } } else { - $feeds = $feedDAO->listFeedsOrderUpdate (); + $feeds = $feedDAO->listFeedsOrderUpdate($this->view->conf->ttl_default); } // on calcule la date des articles les plus anciens qu'on accepte |
