prefs: feed search includes feed_url

This commit is contained in:
Andrew Dolgov 2005-12-10 21:12:18 +01:00
parent 327a3bbe1a
commit 85af98a6b7

View file

@ -1617,7 +1617,8 @@
$_SESSION["pref_sort_feeds"] = $feeds_sort;
if ($feed_search) {
$search_qpart = "UPPER(title) LIKE UPPER('%$feed_search%') AND";
$search_qpart = "(UPPER(title) LIKE UPPER('%$feed_search%') OR
UPPER(feed_url) LIKE UPPER('%$feed_search%')) AND";
} else {
$search_qpart = "";
}