Make prefs feed search case-insensitive.

Previously the search query had to match lower title or feed_url (i.e. searching w/ uppercase wouldn't match).
This commit is contained in:
wn_ 2021-08-17 23:14:14 +00:00
parent 992e9cd9e3
commit 23b4152c9e
1 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ class Pref_Feeds extends Handler_Protected {
->order_by_asc('title');
if ($search) {
$feeds_obj->where_raw('(LOWER(title) LIKE ? OR LOWER(feed_url) LIKE ?)', ["%$search%", "%$search%"]);
$feeds_obj->where_raw('(LOWER(title) LIKE ? OR LOWER(feed_url) LIKE LOWER(?))', ["%$search%", "%$search%"]);
}
foreach ($feeds_obj->find_many() as $feed) {
@ -253,7 +253,7 @@ class Pref_Feeds extends Handler_Protected {
->order_by_asc('title');
if ($search) {
$feeds_obj->where_raw('(LOWER(title) LIKE ? OR LOWER(feed_url) LIKE ?)', ["%$search%", "%$search%"]);
$feeds_obj->where_raw('(LOWER(title) LIKE ? OR LOWER(feed_url) LIKE LOWER(?))', ["%$search%", "%$search%"]);
}
foreach ($feeds_obj->find_many() as $feed) {
@ -289,7 +289,7 @@ class Pref_Feeds extends Handler_Protected {
->order_by_asc('title');
if ($search) {
$feeds_obj->where_raw('(LOWER(title) LIKE ? OR LOWER(feed_url) LIKE ?)', ["%$search%", "%$search%"]);
$feeds_obj->where_raw('(LOWER(title) LIKE ? OR LOWER(feed_url) LIKE LOWER(?))', ["%$search%", "%$search%"]);
}
foreach ($feeds_obj->find_many() as $feed) {