minor fix
This commit is contained in:
parent
5757d4a933
commit
c7dd55e959
|
@ -227,6 +227,10 @@ try {
|
|||
array_walk(
|
||||
$custom_data_array,
|
||||
function (&$value, $field) {
|
||||
if (is_array($value) === true) {
|
||||
$value = '['.implode(',', $value).']';
|
||||
}
|
||||
|
||||
$value = $field.'='.$value;
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue