summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-03-05 16:38:08 +0300
committerAndrew Dolgov <[email protected]>2015-03-05 16:38:08 +0300
commitaac7067316be23362d50bcd8bf8c98f7baa8e5ce (patch)
tree7bd02bbe142234025512a320e598bf5d57de3eb8
parentf27e174d63dd415d1416e34a8b740d6e52e9d12b (diff)
parent95a95b0a404705695184e21b15ca6dfc3adb92c4 (diff)
Merge pull request #439 from SkyREgit/patch-1
Add unread category to build-in Search
-rw-r--r--include/functions2.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/functions2.php b/include/functions2.php
index 6d02d01e0..278c0f3ee 100644
--- a/include/functions2.php
+++ b/include/functions2.php
@@ -360,6 +360,19 @@
if (!$not) array_push($search_words, $k);
}
break;
+ case "unread":
+ if ($commandpair[1]) {
+ if ($commandpair[1] == "true")
+ array_push($query_keywords, "($not (unread = true))");
+ else
+ array_push($query_keywords, "($not (unread = false))");
+
+ } else {
+ array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
+ OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
+ if (!$not) array_push($search_words, $k);
+ }
+ break;
default:
if (strpos($k, "@") === 0) {