(Retrofit from trunk) N°1418 fix audit with valid_flag=true that were always failing (r5773)

SVN:2.4[5774]
This commit is contained in:
Pierre Goiffon
2018-05-04 15:12:55 +00:00
parent dd9984be7f
commit 6e810322f7

View File

@@ -692,7 +692,7 @@ class VariableExpression extends UnaryExpression
$res = CMDBSource::Quote($aArgs[$this->m_sName]);
if (is_array($res))
{
$res = implode(', ', $res);
$res = '('.implode(', ', $res).')';
}
return $res;
}