Skip to content

Commit

Permalink
added an additional condition for arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
patriceckhart authored Feb 25, 2025
1 parent 2cdd77a commit fc5d339
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Classes/Domain/AbstractFormObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ protected function stringifyValue($value): string
return $identifier;
}
}
if(is_array($value)) {
$value = json_encode($value);
}
return (string)$value;
}

Expand Down

0 comments on commit fc5d339

Please sign in to comment.