aboutsummaryrefslogtreecommitdiff
path: root/app/Models/EntryDAO.php
diff options
context:
space:
mode:
authorGravatar Thomas Citharel <tcit@tcit.fr> 2017-01-27 10:26:31 +0100
committerGravatar Thomas Citharel <tcit@tcit.fr> 2017-01-27 10:26:31 +0100
commitae5a8572d50fbbd52bdd88cce6bb80b79dbaaf1a (patch)
tree16bcc30c3460d92289c90a01fe5e236f7435703f /app/Models/EntryDAO.php
parentbb69a960b295384c3fcf5f4e0091603c997ae5ca (diff)
postgres fixes
Diffstat (limited to 'app/Models/EntryDAO.php')
-rw-r--r--app/Models/EntryDAO.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php
index 397471baa..afcde3d7f 100644
--- a/app/Models/EntryDAO.php
+++ b/app/Models/EntryDAO.php
@@ -649,7 +649,7 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo implements FreshRSS_Searchable {
$values[] = intval($id);
break;
case 'A':
- $where .= '1 ';
+ $where .= '1=1 ';
break;
default:
throw new FreshRSS_EntriesGetter_Exception('Bad type in Entry->listByType: [' . $type . ']!');