소스 검색

Merge pull request #1361 from Alkarex/PostgreSQL-updateCachedValues

PostgreSQL fix updateCachedValues
Alexandre Alapetite 9 년 전
부모
커밋
e27e5809f9
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      app/Models/Factory.php

+ 1 - 0
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);