aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/LinkDB.php
diff options
context:
space:
mode:
authorArthur <arthur@hoa.ro>2016-07-09 07:36:23 +0200
committerGitHub <noreply@github.com>2016-07-09 07:36:23 +0200
commit0c4c7ae818336d5b0f94562e551ca1a3f34d3435 (patch)
tree5f0da042d12c10c8e09deb788c928e0644e9cdcb /application/LinkDB.php
parent649af5b501d2a90448242f53764ff693e9854039 (diff)
parent9ccca40189652e529732683abcdf54fcf775c9ec (diff)
downloadShaarli-0c4c7ae818336d5b0f94562e551ca1a3f34d3435.tar.gz
Shaarli-0c4c7ae818336d5b0f94562e551ca1a3f34d3435.tar.zst
Shaarli-0c4c7ae818336d5b0f94562e551ca1a3f34d3435.zip
Merge pull request #558 from ArthurHoaro/hashtag4
Hashtag system
Diffstat (limited to 'application/LinkDB.php')
-rw-r--r--application/LinkDB.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/LinkDB.php b/application/LinkDB.php
index b1072e07..929a6b0f 100644
--- a/application/LinkDB.php
+++ b/application/LinkDB.php
@@ -409,7 +409,7 @@ You use the community supported version of the original Shaarli project, by Seba
409 $searchterm = !empty($filterRequest['searchterm']) ? escape($filterRequest['searchterm']) : ''; 409 $searchterm = !empty($filterRequest['searchterm']) ? escape($filterRequest['searchterm']) : '';
410 410
411 // Search tags + fullsearch. 411 // Search tags + fullsearch.
412 if (empty($type) && ! empty($searchtags) && ! empty($searchterm)) { 412 if (! empty($searchtags) && ! empty($searchterm)) {
413 $type = LinkFilter::$FILTER_TAG | LinkFilter::$FILTER_TEXT; 413 $type = LinkFilter::$FILTER_TAG | LinkFilter::$FILTER_TEXT;
414 $request = array($searchtags, $searchterm); 414 $request = array($searchtags, $searchterm);
415 } 415 }