diff options
-rw-r--r-- | doc/md/Community-&-Related-software.md | 3 | ||||
-rw-r--r-- | index.php | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/doc/md/Community-&-Related-software.md b/doc/md/Community-&-Related-software.md index 4193c045..54f18c8e 100644 --- a/doc/md/Community-&-Related-software.md +++ b/doc/md/Community-&-Related-software.md | |||
@@ -41,6 +41,9 @@ See [Theming](Theming) for a list of community-contributed themes, and an instal | |||
41 | - [Shaarlier for Android](https://github.com/dimtion/Shaarlier) - Android application to simply add links directly into your Shaarli | 41 | - [Shaarlier for Android](https://github.com/dimtion/Shaarlier) - Android application to simply add links directly into your Shaarli |
42 | - [Stakali for Android](https://stakali.toneiv.eu) - Stakali is a personal bookmark manager which synchronizes with Shaarli | 42 | - [Stakali for Android](https://stakali.toneiv.eu) - Stakali is a personal bookmark manager which synchronizes with Shaarli |
43 | 43 | ||
44 | ### Desktop Apps | ||
45 | - [Ulauncher Extension](https://github.com/sebw/ulauncher-shaarli) - Ulauncher is an an application launcher for Linux, this extension allows research in your Shaarli | ||
46 | |||
44 | ### Browser addons | 47 | ### Browser addons |
45 | - [Shaarli Firefox Extension](https://github.com/ikipatang/shaarli-web-extension) - toolbar button to share your current tab with Shaarli. | 48 | - [Shaarli Firefox Extension](https://github.com/ikipatang/shaarli-web-extension) - toolbar button to share your current tab with Shaarli. |
46 | - [Shaarli Chrome Extension](https://github.com/octplane/Shiny-Shaarli) - toolbar button to share your current tab with Shaarli. | 49 | - [Shaarli Chrome Extension](https://github.com/octplane/Shiny-Shaarli) - toolbar button to share your current tab with Shaarli. |
@@ -1690,7 +1690,7 @@ function buildLinkList($PAGE, $linkDb, $conf, $pluginManager, $loginManager) | |||
1690 | } | 1690 | } |
1691 | } else { | 1691 | } else { |
1692 | // Filter bookmarks according search parameters. | 1692 | // Filter bookmarks according search parameters. |
1693 | $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : ''; | 1693 | $visibility = ! empty($_SESSION['visibility']) ? $_SESSION['visibility'] : null; |
1694 | $request = [ | 1694 | $request = [ |
1695 | 'searchtags' => $searchtags, | 1695 | 'searchtags' => $searchtags, |
1696 | 'searchterm' => $searchterm, | 1696 | 'searchterm' => $searchterm, |