diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-07-11 14:23:46 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-07-11 14:23:46 +0400 |
| commit | d272da912082102ac52c73094abd61d463c25385 (patch) | |
| tree | 68cb81daeb533d42d643988677bf20a699b6d9c9 /plugins | |
| parent | 3c4dead676a7c5199aef1b022f54f7763c17311e (diff) | |
vf_shared: fix warning
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/vf_shared/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/vf_shared/init.php b/plugins/vf_shared/init.php index 00d288c05..c7eac9659 100644 --- a/plugins/vf_shared/init.php +++ b/plugins/vf_shared/init.php @@ -37,7 +37,7 @@ class VF_Shared extends Plugin { function get_headlines($feed_id, $options) { $qfh_ret = queryFeedHeadlines(-4, $options['limit'], - $this->get_unread() > 0 ? "adaptive" : "all_articles", + $this->get_unread(-1) > 0 ? "adaptive" : "all_articles", false, $options['search'], $options['search_mode'], |