Fix MySQL search Queries

Add the missing space between "AND" and "MATCH" in MySQL search queries
This commit is contained in:
DJ_TBX 2022-07-04 00:17:01 +03:00
parent b148d2f515
commit 9d69fd2a56
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";