aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-11-06 11:45:21 +0100
committerGravatar GitHub <noreply@github.com> 2016-11-06 11:45:21 +0100
commite27e5809f96eecbf7f3b72d151b411bd27a00921 (patch)
tree56827616e616724fcf56921fd168e911f80f603f
parentdde719060afeb23f9092702f538eda16079d8ce3 (diff)
parent34868cd2911523163c6732d58efa00d3fe322d4f (diff)
Merge pull request #1361 from Alkarex/PostgreSQL-updateCachedValues
PostgreSQL fix updateCachedValues
-rw-r--r--app/Models/Factory.php1
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);