diff options
| author | 2014-09-17 09:30:31 +0200 | |
|---|---|---|
| committer | 2014-09-17 09:30:31 +0200 | |
| commit | f5c863705ba63b124decb3769fc26798bf12a016 (patch) | |
| tree | e0932e7f1524c64eaab877f37975e772a5cc1980 /app/Models/EntryDAO.php | |
| parent | fc5cae981f906bc887eaf053b1826f9153210423 (diff) | |
| parent | 83832a39c4651bd3e4bfa007f75c91d040db79d3 (diff) | |
Merge branch 'reading-conf' of github.com:aledeg/FreshRSS into aledeg-reading-conf
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index 75a8aeba4..dee49212d 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -338,6 +338,9 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo { elseif ($state & FreshRSS_Entry::STATE_READ) { $where .= 'AND e1.is_read=1 '; } + elseif ($state & FreshRSS_Entry::STATE_NOT_READ_STRICT) { + $where .= 'AND e1.is_read=0 '; + } if ($state & FreshRSS_Entry::STATE_FAVORITE) { if (!($state & FreshRSS_Entry::STATE_NOT_FAVORITE)) { $where .= 'AND e1.is_favorite=1 '; |
