pref-feeds: allow searching by feed_url
This commit is contained in:
parent
a5556c2471
commit
9def554082
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ class Pref_Feeds extends Handler_Protected {
|
||||||
else
|
else
|
||||||
$search = "";
|
$search = "";
|
||||||
|
|
||||||
if ($search) $search_qpart = " AND LOWER(title) LIKE LOWER('%$search%')";
|
if ($search) $search_qpart = " AND (LOWER(title) LIKE LOWER('%$search%') OR LOWER(feed_url) LIKE LOWER('%$search%'))";
|
||||||
|
|
||||||
// first one is set by API
|
// first one is set by API
|
||||||
$show_empty_cats = $_REQUEST['force_show_empty'] ||
|
$show_empty_cats = $_REQUEST['force_show_empty'] ||
|
||||||
|
|
Loading…
Reference in a new issue