N°2746 - Fix breadcrumb for search of enumSet

This commit is contained in:
Eric
2020-02-11 16:02:55 +01:00
parent 93c9783b1a
commit d9bf0fe012
2 changed files with 7 additions and 7 deletions

View File

@@ -203,7 +203,7 @@ class CriterionToOQL extends CriterionConversionAbstract
// This allow to search for complete words
if (!empty($aRawValues))
{
$sValue = '"'.implode('" "', $aRawValues).'" _';
$sValue = implode(' ', $aRawValues).' _';
}
else
{