diff options
Diffstat (limited to 'app/Models')
| -rw-r--r-- | app/Models/EntryDAOSQLite.php (renamed from app/Models/EntryDAO_SQLite.php) | 2 | ||||
| -rw-r--r-- | app/Models/Factory.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/EntryDAO_SQLite.php b/app/Models/EntryDAOSQLite.php index f148f3c63..45d3a3ea9 100644 --- a/app/Models/EntryDAO_SQLite.php +++ b/app/Models/EntryDAOSQLite.php @@ -1,6 +1,6 @@ <?php -class FreshRSS_EntryDAO_SQLite extends FreshRSS_EntryDAO { +class FreshRSS_EntryDAOSQLite extends FreshRSS_EntryDAO { public function markRead($ids, $is_read = true) { if (is_array($ids)) { //Many IDs at once diff --git a/app/Models/Factory.php b/app/Models/Factory.php index bea89c114..3ef68c41d 100644 --- a/app/Models/Factory.php +++ b/app/Models/Factory.php @@ -5,7 +5,7 @@ class FreshRSS_Factory { public static function createEntryDao() { $db = Minz_Configuration::dataBase(); if ($db['type'] === 'sqlite') { - return new FreshRSS_EntryDAO_SQLite(); + return new FreshRSS_EntryDAOSQLite(); } else { return new FreshRSS_EntryDAO(); } |
