Skip to content
Snippets Groups Projects
Commit 4e63a58e authored by Alan Lord's avatar Alan Lord
Browse files

Patch to fix #1557

parent abf68660
No related branches found
No related tags found
3 merge requests!802Field Mapping ID fix,!793#1533 issue on date formate,!779Patch to fix #1557
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment