aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/statsController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-07-06 11:54:00 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-07-06 11:54:00 +0200
commit3bbd0e446f6a1a0c41a4db36d2841db36dc34004 (patch)
tree7a6417f0a01d5c318112fbf0419f53c5beae61c6 /app/Controllers/statsController.php
parent96057fe491412171f4ef2079d3d84cbe1a61e300 (diff)
Prepare statistics for SQLite
Temporarily disable 30-day statistics for SQLite https://github.com/marienfressinaud/FreshRSS/issues/100 https://github.com/marienfressinaud/FreshRSS/issues/90
Diffstat (limited to 'app/Controllers/statsController.php')
-rw-r--r--app/Controllers/statsController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/statsController.php b/app/Controllers/statsController.php
index fb5609cb4..9009468bc 100644
--- a/app/Controllers/statsController.php
+++ b/app/Controllers/statsController.php
@@ -3,7 +3,7 @@
class FreshRSS_stats_Controller extends Minz_ActionController {
public function indexAction() {
- $statsDAO = new FreshRSS_StatsDAO ();
+ $statsDAO = FreshRSS_Factory::createStatsDAO();
Minz_View::appendScript (Minz_Url::display ('/scripts/flotr2.min.js?' . @filemtime(PUBLIC_PATH . '/scripts/flotr2.min.js')));
$this->view->repartition = $statsDAO->calculateEntryRepartition();
$this->view->count = ($statsDAO->calculateEntryCount());
@@ -13,7 +13,7 @@ class FreshRSS_stats_Controller extends Minz_ActionController {
}
public function idleAction() {
- $statsDAO = new FreshRSS_StatsDAO ();
+ $statsDAO = FreshRSS_Factory::createStatsDAO();
$feeds = $statsDAO->calculateFeedLastDate();
$idleFeeds = array();
$now = new \DateTime();