Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
21fcaf979f
|
@ -354,6 +354,19 @@
|
||||||
else
|
else
|
||||||
array_push($query_keywords, "($not (published = false))");
|
array_push($query_keywords, "($not (published = 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;
|
||||||
|
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 {
|
} else {
|
||||||
array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
|
array_push($query_keywords, "(UPPER(ttrss_entries.title) $not LIKE UPPER('%$k%')
|
||||||
OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
|
OR UPPER(ttrss_entries.content) $not LIKE UPPER('%$k%'))");
|
||||||
|
|
Loading…
Reference in New Issue