aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2017-02-19 21:52:35 +0100
committerGitHub <noreply@github.com>2017-02-19 21:52:35 +0100
commitbba94d74585e465f541e20c8aba2e95695435cc4 (patch)
tree0738a9498415b0da1eafd170bf24fb0819033224 /src/Wallabag/CoreBundle/Repository/EntryRepository.php
parent2b8f274b8a1e46ff37fd11dd99abeef2cd455d5b (diff)
parenteac09b48b08f5cbc0d219da000026c38a265583a (diff)
downloadwallabag-bba94d74585e465f541e20c8aba2e95695435cc4.tar.gz
wallabag-bba94d74585e465f541e20c8aba2e95695435cc4.tar.zst
wallabag-bba94d74585e465f541e20c8aba2e95695435cc4.zip
Merge pull request #2832 from Kdecherf/search-domain
Search by term: extend to entries url
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index b9532fa2..4071301d 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -106,8 +106,9 @@ class EntryRepository extends EntityRepository
106 $qb->andWhere('e.isArchived = true'); 106 $qb->andWhere('e.isArchived = true');
107 } 107 }
108 108
109 // We lower() all parts here because PostgreSQL 'LIKE' verb is case-sensitive
109 $qb 110 $qb
110 ->andWhere('e.content LIKE :term OR e.title LIKE :term')->setParameter('term', '%'.$term.'%') 111 ->andWhere('lower(e.content) LIKE lower(:term) OR lower(e.title) LIKE lower(:term) OR lower(e.url) LIKE lower(:term)')->setParameter('term', '%'.$term.'%')
111 ->leftJoin('e.tags', 't') 112 ->leftJoin('e.tags', 't')
112 ->groupBy('e.id'); 113 ->groupBy('e.id');
113 114