Fix MySQL search Queries
Add the missing space between "AND" and "MATCH" in MySQL search queries
This commit is contained in:
@@ -2392,7 +2392,7 @@ class Feeds extends Handler_Protected {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (count($query_keywords) > 0)
|
if (count($query_keywords) > 0)
|
||||||
$search_query_part = implode("AND", $query_keywords);
|
$search_query_part = implode("AND ", $query_keywords);
|
||||||
else
|
else
|
||||||
$search_query_part = "false";
|
$search_query_part = "false";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user