diff options
| author | 2014-09-19 10:37:29 +0200 | |
|---|---|---|
| committer | 2014-09-19 10:37:29 +0200 | |
| commit | 8731de5c3ad4eea8ae30d1f6435c569ed31b8828 (patch) | |
| tree | b1b0924420a383ef8dd15a7ca1551fbdfc70ea81 /app/Models/StatsDAOSQLite.php | |
| parent | 2f5304a1f7052bce1315f2ed85141568f0995e7c (diff) | |
Fix repartition stats with 0 or 1 article.
Diffstat (limited to 'app/Models/StatsDAOSQLite.php')
| -rw-r--r-- | app/Models/StatsDAOSQLite.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Models/StatsDAOSQLite.php b/app/Models/StatsDAOSQLite.php index 6cb54ddf6..3b1256de1 100644 --- a/app/Models/StatsDAOSQLite.php +++ b/app/Models/StatsDAOSQLite.php @@ -53,6 +53,7 @@ SQL; $stm->execute(); $res = $stm->fetchAll(PDO::FETCH_NAMED); + $repartition = array(); foreach ($res as $value) { $repartition[(int) $value['period']] = (int) $value['count']; } |
