Merge pull request 'Fix MySQL search Queries' (#74) from DJ_TBX/tt-rss:master into master

Reviewed-on: https://dev.tt-rss.org/fox/tt-rss/pulls/74
This commit is contained in:
fox 2022-07-04 06:27:31 +03:00
commit d9ae4204ce
1 changed files with 1 additions and 1 deletions

View File

@ -2392,7 +2392,7 @@ class Feeds extends Handler_Protected {
}
if (count($query_keywords) > 0)
$search_query_part = implode("AND", $query_keywords);
$search_query_part = implode("AND ", $query_keywords);
else
$search_query_part = "false";