From 43ddaceb6e5624d65a1cd9a55fc4ff13a1a2d10d Mon Sep 17 00:00:00 2001 From: Alex Glover Date: Sat, 9 Dec 2017 21:17:20 -0500 Subject: [PATCH] Loosen search syntax for parent matching --- services/Import_EntryService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/Import_EntryService.php b/services/Import_EntryService.php index 4a6633f..8ca2b26 100644 --- a/services/Import_EntryService.php +++ b/services/Import_EntryService.php @@ -229,7 +229,7 @@ private function prepareParentForElement($data, $sectionId) $criteria->sectionId = $sectionId; // Exact match - $criteria->search = '"'.$data.'"'; + $criteria->search = $data; // Return the first found element for connecting if ($criteria->total()) {