Skip to content

Commit

Permalink
Merge pull request #93 from patriceckhart/patch-1
Browse files Browse the repository at this point in the history
added an additional condition for arrays
  • Loading branch information
jonnitto authored Mar 1, 2025
2 parents 2cdd77a + 9d9a08d commit 7eaa7fa
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 7eaa7fa

Please sign in to comment.