mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 17:35:57 +00:00
search to sql: use str_getcsv instead of explode to support quoted long string tokens
This commit is contained in:
@@ -2243,7 +2243,7 @@
|
|||||||
|
|
||||||
$search_query_part = "";
|
$search_query_part = "";
|
||||||
|
|
||||||
$keywords = explode(" ", $search);
|
$keywords = str_getcsv($search, " ");
|
||||||
$query_keywords = array();
|
$query_keywords = array();
|
||||||
$search_words = array();
|
$search_words = array();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user