diff options
| author | 2016-11-06 11:45:21 +0100 | |
|---|---|---|
| committer | 2016-11-06 11:45:21 +0100 | |
| commit | e27e5809f96eecbf7f3b72d151b411bd27a00921 (patch) | |
| tree | 56827616e616724fcf56921fd168e911f80f603f | |
| parent | dde719060afeb23f9092702f538eda16079d8ce3 (diff) | |
| parent | 34868cd2911523163c6732d58efa00d3fe322d4f (diff) | |
Merge pull request #1361 from Alkarex/PostgreSQL-updateCachedValues
PostgreSQL fix updateCachedValues
| -rw-r--r-- | app/Models/Factory.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Models/Factory.php b/app/Models/Factory.php index 764987c46..6502c38b7 100644 --- a/app/Models/Factory.php +++ b/app/Models/Factory.php @@ -6,6 +6,7 @@ class FreshRSS_Factory { $conf = Minz_Configuration::get('system'); switch ($conf->db['type']) { case 'sqlite': + case 'pgsql': return new FreshRSS_FeedDAOSQLite($username); default: return new FreshRSS_FeedDAO($username); |
