Do not break when searching for slashes
[phinde.git] / src / phinde / Elasticsearch.php
index 5ca2180c8b66a936d731f8e34691af2385a95174..fd60f95a53ebfe8051825ba941b502c028c285c1 100644 (file)
@@ -122,6 +122,11 @@ class Elasticsearch
             );
         }
 
+        if (strpos($query, '/') !== false && strpos($query, '"') === false) {
+            //add quotes when there is a slash and no quotes
+            // https://stackoverflow.com/questions/31963643/escaping-forward-slashes-in-elasticsearch
+            $query = '"' . $query . '"';
+        }
         $qMust[] = array(
             'query_string' => array(
                 'default_field' => '_all',