mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-03 22:17:36 -05:00
Temporarily disable 30-day statistics for SQLite https://github.com/marienfressinaud/FreshRSS/issues/100 https://github.com/marienfressinaud/FreshRSS/issues/90
10 lines
201 B
PHP
10 lines
201 B
PHP
<?php
|
|
|
|
class FreshRSS_StatsDAOSQLite extends FreshRSS_StatsDAO {
|
|
|
|
public function calculateEntryCount() {
|
|
return $this->convertToSerie(array()); //TODO: Implement 30-day statistics for SQLite
|
|
}
|
|
|
|
}
|