Fix MySQL search Queries
Add the missing space between "AND" and "MATCH" in MySQL search queries
This commit is contained in:
parent
b148d2f515
commit
9d69fd2a56
|
@ -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";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue