summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/search.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/search.php b/lib/search.php
index d9d5d89f3..a5378fa56 100644
--- a/lib/search.php
+++ b/lib/search.php
@@ -17,7 +17,7 @@ class OC_Search_Provider_News extends OC_Search_Provider{
foreach($allFeeds as $feed) {
if(substr_count(strtolower($feed['title']), strtolower($query)) > 0) {
- $link = OCP\Util::linkTo('news', 'index.php').'&lastViewedFeedId='.urlencode($feed['id']);
+ $link = OCP\Util::linkTo('news', 'index.php').'&feedid='.urlencode($feed['id']);
$results[]=new OC_Search_Result($feed['title'], '', $link, (string)$l->t('News'));
}
}