Skip to content
Snippets Groups Projects

Patch to fix #1557

Merged Alan Lord requested to merge lord_alan/vtigercrm:1557_FixUndefinedConstant into 7.4.0
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -1258,7 +1258,7 @@ class QueryGenerator {
if(is_string($value)) {
$value = trim($value);
} elseif(is_array($value)) {
$value = array_map(trim, $value);
$value = array_map('trim', $value);
}
return array('name'=>$fieldname,'value'=>$value,'operator'=>$operator);
}
Loading