summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-16 16:08:55 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-16 16:08:55 +0200
commit3b425b0a46ae89e9ef0127b35563572238a1dc1c (patch)
tree59cc5596f7d94d1f7f1b845f8a608cbd6c0e43b8 /db
parentb8705e242e7510bd1835f61ddff3f1dc497303d9 (diff)
dont care if starred items are read or unread, always show them
Diffstat (limited to 'db')
-rw-r--r--db/statusflag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/statusflag.php b/db/statusflag.php
index 2b96564fc..98b99529f 100644
--- a/db/statusflag.php
+++ b/db/statusflag.php
@@ -37,7 +37,7 @@ class StatusFlag {
*/
public function typeToStatus($type, $showAll){
if($type === FeedType::STARRED){
- $status = self::STARRED;
+ return self::STARRED;
} else {
$status = 0;
}