From 6f018cc674fe049ba49ebf4d89ab386bc29a9327 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 21 Mar 2022 12:51:26 +0100 Subject: Show errored, empty, muted feeds in statistics (#4276) --- app/Controllers/statsController.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/Controllers/statsController.php') diff --git a/app/Controllers/statsController.php b/app/Controllers/statsController.php index 170d35d6f..a50a35343 100644 --- a/app/Controllers/statsController.php +++ b/app/Controllers/statsController.php @@ -131,6 +131,7 @@ class FreshRSS_stats_Controller extends FreshRSS_ActionController { * - last week */ public function idleAction() { + $feed_dao = FreshRSS_Factory::createFeedDao(); $statsDAO = FreshRSS_Factory::createStatsDAO(); $feeds = $statsDAO->calculateFeedLastDate(); $idleFeeds = array( @@ -190,6 +191,7 @@ class FreshRSS_stats_Controller extends FreshRSS_ActionController { } $this->view->idleFeeds = $idleFeeds; + $this->view->feeds = $feed_dao->listFeeds(); $id = Minz_Request::param('id'); $this->view->displaySlider = false; -- cgit v1.2.3