mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 02:58:43 +02:00
N°2746 - Fix empty search for TagSet
This commit is contained in:
@@ -201,9 +201,11 @@ class CriterionToOQL extends CriterionConversionAbstract
|
||||
}
|
||||
}
|
||||
// This allow to search for complete words
|
||||
$sValue = '"'.implode('" "', $aRawValues).'" _';
|
||||
|
||||
if (empty($sValue))
|
||||
if (!empty($aRawValues))
|
||||
{
|
||||
$sValue = '"'.implode('" "', $aRawValues).'" _';
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($bHasUnDefined)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user