diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-09-03 08:45:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 08:45:12 +0200 |
commit | 2835ac7cbe65fd2b602cadad5e9d6b09eb670d59 (patch) | |
tree | f2f51a3a891060aeafef5b963a465bc29eaa823d /application/feed | |
parent | ca636b898ccd62fbef68048ea29e3f922de7429f (diff) | |
parent | a8e210faa624517ee8b8978b7e659a0b3c689297 (diff) | |
download | Shaarli-2835ac7cbe65fd2b602cadad5e9d6b09eb670d59.tar.gz Shaarli-2835ac7cbe65fd2b602cadad5e9d6b09eb670d59.tar.zst Shaarli-2835ac7cbe65fd2b602cadad5e9d6b09eb670d59.zip |
Merge pull request #1524 from ArthurHoaro/fix/rss-sticky
Fixed: Pinned bookmarks are displayed first in ATOM/RSS feeds
Diffstat (limited to 'application/feed')
-rw-r--r-- | application/feed/FeedBuilder.php | 2 |
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 | ||