aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
diff options
context:
space:
mode:
authorKevin Decherf <kevin@kdecherf.com>2016-11-26 19:52:50 +0100
committerKevin Decherf <kevin@kdecherf.com>2016-11-26 19:52:50 +0100
commit00fc2b44f4be1a489b1569e337e4794f042fc855 (patch)
treed1519ec57d09f74aaf1553d7e77c0ec5beaac2e8 /src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
parentebe50a85fbf3ce6b83efa7da191e10cd30edb07c (diff)
downloadwallabag-00fc2b44f4be1a489b1569e337e4794f042fc855.tar.gz
wallabag-00fc2b44f4be1a489b1569e337e4794f042fc855.tar.zst
wallabag-00fc2b44f4be1a489b1569e337e4794f042fc855.zip
Enforce lowercase on domain name filter
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
Diffstat (limited to 'src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
index 7b02f85c..ee66c728 100644
--- a/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/EntryFilterType.php
@@ -90,7 +90,7 @@ class EntryFilterType extends AbstractType
90 if (strlen($value) <= 2 || empty($value)) { 90 if (strlen($value) <= 2 || empty($value)) {
91 return; 91 return;
92 } 92 }
93 $expression = $filterQuery->getExpr()->like($field, $filterQuery->getExpr()->literal('%'.$value.'%')); 93 $expression = $filterQuery->getExpr()->like($field, $filterQuery->getExpr()->lower($filterQuery->getExpr()->literal('%'.$value.'%')));
94 94
95 return $filterQuery->createCondition($expression); 95 return $filterQuery->createCondition($expression);
96 }, 96 },