aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/feed
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-08-29 10:06:40 +0200
committerArthurHoaro <arthur@hoa.ro>2020-08-29 10:06:40 +0200
commita8e210faa624517ee8b8978b7e659a0b3c689297 (patch)
tree68a1d7671210ac39bc556ee6a54cf969ca7a605f /application/feed
parentbea062149ebcb4663861edb1cc0a32faf85b273f (diff)
downloadShaarli-a8e210faa624517ee8b8978b7e659a0b3c689297.tar.gz
Shaarli-a8e210faa624517ee8b8978b7e659a0b3c689297.tar.zst
Shaarli-a8e210faa624517ee8b8978b7e659a0b3c689297.zip
Fixed: Pinned bookmarks are displayed first in ATOM/RSS feeds
Fixes #1485
Diffstat (limited to 'application/feed')
-rw-r--r--application/feed/FeedBuilder.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/feed/FeedBuilder.php b/application/feed/FeedBuilder.php
index 269ad877..3653c32f 100644
--- a/application/feed/FeedBuilder.php
+++ b/application/feed/FeedBuilder.php
@@ -102,7 +102,7 @@ class FeedBuilder
102 } 102 }
103 103
104 // Optionally filter the results: 104 // Optionally filter the results:
105 $linksToDisplay = $this->linkDB->search($userInput); 105 $linksToDisplay = $this->linkDB->search($userInput, null, false, false, true);
106 106
107 $nblinksToDisplay = $this->getNbLinks(count($linksToDisplay), $userInput); 107 $nblinksToDisplay = $this->getNbLinks(count($linksToDisplay), $userInput);
108 108