summaryrefslogtreecommitdiff
path: root/classes/feeds.php
diff options
context:
space:
mode:
authorwn_ <[email protected]>2021-03-27 00:18:05 +0000
committerwn_ <[email protected]>2021-03-27 00:18:05 +0000
commit5d5c034a905158bf6a9ce868663e6ee7dad8fc49 (patch)
treebe1bbaac6fb655ca5676b64ffd6b8bc08ffdd4d5 /classes/feeds.php
parent0b82afabd5f4eaac9a4a163d890dab34443f18ec (diff)
Adjust quotation marks in search query before 'str_getcsv'.
This moves a potential first quotation mark to before the associated keyword to ensure 'str_getcsv' groups the key and value correctly. Without this 'str_getcsv' would split on potential spaces within the quoted value.
Diffstat (limited to 'classes/feeds.php')
-rwxr-xr-xclasses/feeds.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/classes/feeds.php b/classes/feeds.php
index 68d535481..12d6dd65f 100755
--- a/classes/feeds.php
+++ b/classes/feeds.php
@@ -2054,8 +2054,7 @@ class Feeds extends Handler_Protected {
}
private static function _search_to_sql($search, $search_language, $owner_uid) {
-
- $keywords = str_getcsv(trim($search), " ");
+ $keywords = str_getcsv(preg_replace('/(-?\w+)\:"(\w+)/', '"${1}:${2}', trim($search)), ' ');
$query_keywords = array();
$search_words = array();
$search_query_leftover = array();