diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php index 2aaa3dc59..7c8ac4db1 100755 --- a/classes/pref/feeds.php +++ b/classes/pref/feeds.php @@ -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) {