diff options
Diffstat (limited to 'app/Models/EntryDAO.php')
| -rw-r--r-- | app/Models/EntryDAO.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Models/EntryDAO.php b/app/Models/EntryDAO.php index b9cbfd584..3f3cc478b 100644 --- a/app/Models/EntryDAO.php +++ b/app/Models/EntryDAO.php @@ -418,6 +418,10 @@ class FreshRSS_EntryDAO extends Minz_ModelPdo { $where .= 'f.priority > 0 '; $joinFeed = true; break; + case 's': + // This is deprecated. The favorite button does not exist anymore + $where .= 'e1.is_favorite = 1 '; + break; case 'c': $where .= 'f.category = ? '; $values[] = intval($id); |
