summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-10 21:12:18 +0100
committerAndrew Dolgov <[email protected]>2005-12-10 21:12:18 +0100
commit85af98a6b72cb27b36e4260704f8d81895f7ada6 (patch)
treea53022f56d52794912896ce139b1b420400b63d4 /backend.php
parent327a3bbe1a175888e1289ece51d492039018d74c (diff)
prefs: feed search includes feed_url
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index a018e0b8d..4f4ac12e7 100644
--- a/backend.php
+++ b/backend.php
@@ -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 = "";
}